From 9d6baf7cbd4a430dc1839da7713f535d9a4c1aa6 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 28 Jul 2003 22:09:47 +0000 Subject: [PATCH] (suggest_asking_for_help): Fix having macros in a printf statement. --- lib-src/etags.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib-src/etags.c b/lib-src/etags.c index 79a31c0be02..9633cf37ad2 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -6484,14 +6484,14 @@ pfatal (s1) static void suggest_asking_for_help () { - fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n", - progname, + #ifdef LONG_OPTIONS - "--help" +fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n", + progname, "--help"); #else - "-h" +fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n", + progname, "-h"); #endif - ); exit (BAD); } -- 2.39.2