From: David Lawrence Ramsey Date: Sat, 22 Apr 2006 20:03:05 +0000 (+0000) Subject: really fix #ifdef X-Git-Tag: v1.3.12~265 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=97415dfdc715da735352481c15aa94cb70e67680;p=nano.git really fix #ifdef git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3413 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/global.c b/src/global.c index 851949f0..f8bff1ec 100644 --- a/src/global.c +++ b/src/global.c @@ -678,11 +678,11 @@ void shortcut_init(bool unjustify) NANO_NO_KEY, NANO_NO_KEY, VIEW, do_wordlinechar_count); #endif - sc_init_one(&main_list, NANO_REFRESH_KEY, refresh_msg, + sc_init_one(&main_list, NANO_REFRESH_KEY, refresh_msg #ifndef NANO_TINY - IFHELP(nano_wordcount_msg, TRUE) + , IFHELP(nano_wordcount_msg, TRUE) #else - IFHELP(nano_wordcount_msg, FALSE) + , IFHELP(nano_wordcount_msg, FALSE) #endif , NANO_NO_KEY, NANO_NO_KEY, NANO_NO_KEY, VIEW, total_refresh);