Commit 769e81c7 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Make tiny nano a tiny bit tinier.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4914 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 0 deletions
+3 -0
2014-05-27 Benno Schulenberg <bensberg@justemail.net>
* src/global.c (shortcut_init): Improve the arrangement of help items
under certain compilation conditions.
* src/global.c (strtosc): Make tiny nano a bit tinier.
2014-05-26 Benno Schulenberg <bensberg@justemail.net>
* src/cut.c (cut_line): Fix compilation with --enable-tiny.
......
......@@ -1470,6 +1470,7 @@ sc *strtosc(char *input)
else if (!strcasecmp(input, "casesens")) {
s->scfunc = case_sens_void;
s->execute = FALSE;
#ifndef NANO_TINY
} else if (!strcasecmp(input, "regexp") ||
!strcasecmp(input, "regex")) {
s->scfunc = regexp_void;
......@@ -1477,6 +1478,7 @@ sc *strtosc(char *input)
} else if (!strcasecmp(input, "backwards")) {
s->scfunc = backwards_void;
s->execute = FALSE;
#endif
} else if (!strcasecmp(input, "dontreplace")) {
s->scfunc = no_replace_void;
s->execute = FALSE;
......
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