diff options
-rw-r--r-- | bin/sh/histedit.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c index d081d05..1e64171 100644 --- a/bin/sh/histedit.c +++ b/bin/sh/histedit.c @@ -164,10 +164,6 @@ sethistsize(hs) } } -/* - * This command is provided since POSIX decided to standardize - * the Korn shell fc command. Oh well... - */ int histcmd(int argc, char **argv) { @@ -178,7 +174,7 @@ histcmd(int argc, char **argv) int i, retval; char *firststr, *laststr; int first, last, direction; - char *pat = NULL, *repl; /* ksh "fc old=new" crap */ + char *pat = NULL, *repl; static int active = 0; struct jmploc jmploc; struct jmploc *volatile savehandler; |