Commit ae2d3003 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Pfff... Getting all iterations right is difficult.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4990 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent b341f29c
Showing with 4 additions and 1 deletion
+4 -1
......@@ -1332,13 +1332,16 @@ sc *strtosc(char *input)
s->scfunc = do_undo;
else if (!strcasecmp(input, "redo"))
s->scfunc = do_redo;
#ifndef DISABLE_HISTORIES
else if (!strcasecmp(input, "prevhistory")) {
s->scfunc = get_history_older_void;
s->execute = FALSE;
} else if (!strcasecmp(input, "nexthistory")) {
s->scfunc = get_history_newer_void;
s->execute = FALSE;
} else if (!strcasecmp(input, "nohelp")) {
}
#endif
else if (!strcasecmp(input, "nohelp")) {
s->scfunc = do_toggle_void;
s->execute = FALSE;
s->toggle = NO_HELP;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment