From: Juanma Barranquero Date: Mon, 28 Jul 2003 22:09:47 +0000 (+0000) Subject: (suggest_asking_for_help): Fix having macros in a printf statement. X-Git-Tag: ttn-vms-21-2-B4~9217 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9d6baf7cbd4a430dc1839da7713f535d9a4c1aa6;p=emacs.git (suggest_asking_for_help): Fix having macros in a printf statement. --- 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); }