From cf8a29627916adcf8b9bb8a192f990716c54a407 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Fri, 20 Jun 2014 16:03:38 +0000 Subject: [PATCH] Fixing compilation with --enable-tiny --enable-histories --enable-nanorc. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4998 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 2 ++ src/global.c | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index db0d1067..d7ad7c53 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,8 @@ * src/files.c: Fix compilation with --enable-tiny --enable-browser. * doc/man/nano.1, doc/texinfo/nano.texi: History logging no longer depends upon nanorc support, plus many other tweaks. + * src/global.c (strtosc): Fix compilation with --enable-tiny + --enable-histories --enable-nanorc. 2014-06-19 Benno Schulenberg * src/nano.c (window_init): Rename 'no_more_space()' to 'more_space()' diff --git a/src/global.c b/src/global.c index cd97dd83..86151f9e 100644 --- a/src/global.c +++ b/src/global.c @@ -1325,19 +1325,20 @@ sc *strtosc(char *input) s->scfunc = do_wordlinechar_count; else if (!strcasecmp(input, "undo")) s->scfunc = do_undo; - else if (!strcasecmp(input, "redo")) { + else if (!strcasecmp(input, "redo")) s->scfunc = do_redo; #endif #ifndef DISABLE_HISTORIES - } else if (!strcasecmp(input, "prevhistory")) { + 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; + } #endif #ifndef NANO_TINY - } else if (!strcasecmp(input, "nohelp")) { + else if (!strcasecmp(input, "nohelp")) { s->scfunc = do_toggle_void; s->execute = FALSE; s->toggle = NO_HELP;