# HG changeset patch # User Juanma Barranquero # Date 1059430187 0 # Node ID f1581f949f71c1aa8730c0008917ad466f4a517a # Parent 36323dc1a2acee74b4d8d4289b5c97b02d41c855 (suggest_asking_for_help): Fix having macros in a printf statement. diff -r 36323dc1a2ac -r f1581f949f71 lib-src/etags.c --- 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); }