nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 03252d4fbcce919c7b02e3296d41be6abc919060
parent bdf84dd8fb40e7180d7dee6a4d25783d9131efb3
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sat, 22 Apr 2006 20:00:23 +0000

fix #ifdef


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

Diffstat:
Msrc/global.c | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git 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);