]> code.delx.au - gnu-emacs/commitdiff
(suggest_asking_for_help): Fix having macros in a printf statement.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 28 Jul 2003 22:09:47 +0000 (22:09 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 28 Jul 2003 22:09:47 +0000 (22:09 +0000)
lib-src/etags.c

index 79a31c0be022d40fec2509c10ec211ddc63677d9..9633cf37ad20c004fcd1ae0a551286bcc0ce282a 100644 (file)
@@ -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);
 }