From ea43a1dbcaa811f9a4c4fe818fb9419a8a3456b6 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Tue, 2 Mar 2004 22:52:57 +0000 Subject: [PATCH] cosmetic #ifdef tweak git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1678 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- src/global.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/global.c b/src/global.c index 3f9366ca..cd488371 100644 --- a/src/global.c +++ b/src/global.c @@ -428,10 +428,10 @@ void shortcut_init(int unjustify) /* The following macro is to be used in calling sc_init_one. The point is * that sc_init_one takes 9 arguments, unless DISABLE_HELP is defined, * when the fourth one should not be there. */ -#ifdef DISABLE_HELP -# define IFHELP(help, nextvar) nextvar -#else +#ifndef DISABLE_HELP # define IFHELP(help, nextvar) help, nextvar +#else +# define IFHELP(help, nextvar) nextvar #endif /* Translators: try to keep this string under 10 characters long */ -- 2.39.5