]> git.wh0rd.org Git - nano.git/commitdiff
add another missing part of DB's patch to convert flags and related
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 7 Jul 2004 14:36:44 +0000 (14:36 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 7 Jul 2004 14:36:44 +0000 (14:36 +0000)
variables into longs: toggle_init_one() should take a long instead of an
int for its flag parameter

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1845 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/global.c
src/proto.h

index 15f87d65d411fbf62a75fd905a3865f7f3ea8499..b6078a9549b3da6f0ca4735693b36739a6ae99a1 100644 (file)
@@ -215,9 +215,9 @@ void sc_init_one(shortcut **shortcutage, int ctrlval, const char *desc,
 }
 
 #ifndef NANO_SMALL
-/* Create one new toggle structure, at the end of the toggles
- * linked list. */
-void toggle_init_one(int val, const char *desc, int flag)
+/* Create one new toggle structure, at the end of the toggles linked
+ * list. */
+void toggle_init_one(int val, const char *desc, long flag)
 {
     toggle *u;
 
index f65a1a53fb60ab4ddb28e29695389fae37118754..db7d575791580e9b8a1a43af07cb94ac4eab6da6 100644 (file)
@@ -225,7 +225,7 @@ void sc_init_one(shortcut **shortcutage, int key, const char *desc,
        int metaval, int funcval, int miscval, int view, void
        (*func)(void));
 #ifndef NANO_SMALL
-void toggle_init_one(int val, const char *desc, int flag);
+void toggle_init_one(int val, const char *desc, long flag);
 void toggle_init(void);
 #ifdef DEBUG
 void free_toggles(void);