discovered by David Sobon).
username_tab_completion()
- Optimization and removal of useless vars (Rocco).
+- global.c:
+ - Don't define toggles global or toggle_init_one if using --tiny.
- nano.c:
do_justify()
- Added restoration of totsize after unjustify command.
shortcut browser_list[BROWSER_LIST_LEN];
#endif
+#ifndef NANO_SMALL
toggle toggles[TOGGLE_LEN];
+#endif
/* Regular expressions */
s->func = func;
}
+#ifndef NANO_SMALL
/* Initialize the toggles in the same manner */
void toggle_init_one(toggle * t, int val, char *desc, int flag)
{
t->desc = desc;
t->flag = flag;
}
+#endif
void toggle_init(void)
{