]> git.wh0rd.org Git - nano.git/commitdiff
global.c: Don't define toggles global or toggle_init_one if using --tiny
authorChris Allegretta <chrisa@asty.org>
Sat, 20 Jan 2001 22:18:18 +0000 (22:18 +0000)
committerChris Allegretta <chrisa@asty.org>
Sat, 20 Jan 2001 22:18:18 +0000 (22:18 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@493 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
global.c

index eb23dd04c6bd6995e24f3c5c4460f34f0f4eb100..62d74f8ef6cc03a5b94137c4968f9caac1ee6288 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,8 @@ General
          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.
index ba0a1c82afac653cdb037ff7b4976b1af75be7b6..5fe570b9319d59ad4c3cba0b8347bafa1501f30f 100644 (file)
--- a/global.c
+++ b/global.c
@@ -82,7 +82,9 @@ shortcut spell_list[SPELL_LIST_LEN];
 shortcut browser_list[BROWSER_LIST_LEN];
 #endif
 
+#ifndef NANO_SMALL
 toggle toggles[TOGGLE_LEN];
+#endif
 
 /* Regular expressions */
 
@@ -106,6 +108,7 @@ void sc_init_one(shortcut * s, int key, char *desc, char *help, int alt,
     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)
 {
@@ -113,6 +116,7 @@ void toggle_init_one(toggle * t, int val, char *desc, int flag)
     t->desc = desc;
     t->flag = flag;
 }
+#endif
 
 void toggle_init(void)
 {