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

startup: allow to rebind the RegExp toggle also in the tiny version

This fixes https://savannah.gnu.org/bugs/?48988.
parent acd8809d
Showing with 3 additions and 1 deletion
+3 -1
......@@ -1520,12 +1520,14 @@ sc *strtosc(const char *input)
s->scfunc = total_refresh;
else if (!strcasecmp(input, "suspend"))
s->scfunc = do_suspend_void;
#ifndef NANO_TINY
else if (!strcasecmp(input, "casesens"))
s->scfunc = case_sens_void;
#ifndef NANO_TINY
#endif
else if (!strcasecmp(input, "regexp") ||
!strcasecmp(input, "regex"))
s->scfunc = regexp_void;
#ifndef NANO_TINY
else if (!strcasecmp(input, "backwards"))
s->scfunc = backwards_void;
#endif
......
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