Mercurial > emacs
changeset 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 | 36323dc1a2ac |
children | 76d453ac3c4f |
files | lib-src/etags.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
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); }