]> git.wh0rd.org Git - nano.git/commitdiff
fix #ifdef
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 22 Apr 2006 20:00:23 +0000 (20:00 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 22 Apr 2006 20:00:23 +0000 (20:00 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3412 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/global.c

index 7445e2e0c40d1769f83059468aa0af466827f0c5..851949f0753e2fb055738ee58432a182d11194d5 100644 (file)
@@ -679,8 +679,12 @@ void shortcut_init(bool unjustify)
 #endif
 
     sc_init_one(&main_list, NANO_REFRESH_KEY, refresh_msg,
-       IFHELP(nano_refresh_msg, TRUE), NANO_NO_KEY, NANO_NO_KEY,
-       NANO_NO_KEY, VIEW, total_refresh);
+#ifndef NANO_TINY
+       IFHELP(nano_wordcount_msg, TRUE)
+#else
+       IFHELP(nano_wordcount_msg, FALSE)
+#endif
+       , NANO_NO_KEY, NANO_NO_KEY, NANO_NO_KEY, VIEW, total_refresh);
 
     free_shortcutage(&whereis_list);