diff --git a/src/global.c b/src/global.c
index 2a30bdc5281f0fa845fa404ec4bcc96579e7c01d..27ab2a965f4c6dd7851a52f7043feb892e89281f 100644
--- a/src/global.c
+++ b/src/global.c
@@ -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