From 03252d4fbcce919c7b02e3296d41be6abc919060 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sat, 22 Apr 2006 20:00:23 +0000 Subject: [PATCH] fix #ifdef git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3412 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- src/global.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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); -- 2.39.5