diff lib-src/etags.c @ 52068:f1581f949f71

(suggest_asking_for_help): Fix having macros in a printf statement.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 28 Jul 2003 22:09:47 +0000
parents c21ab9f401a9
children 695cf19ef79e
line wrap: on
line diff
--- a/lib-src/etags.c	Mon Jul 28 21:50:05 2003 +0000
+++ b/lib-src/etags.c	Mon Jul 28 22:09:47 2003 +0000
@@ -6484,14 +6484,14 @@
 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);
 }