From: David Lawrence Ramsey Date: Sat, 22 Apr 2006 20:00:23 +0000 (+0000) Subject: fix #ifdef X-Git-Tag: v1.3.12~266 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=03252d4fbcce919c7b02e3296d41be6abc919060;p=nano.git fix #ifdef git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3412 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/global.c b/src/global.c index 7445e2e0..851949f0 100644 --- a/src/global.c +++ b/src/global.c @@ -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);