diff options
| author | Juanma Barranquero | 2003-07-28 22:09:47 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-07-28 22:09:47 +0000 |
| commit | 9d6baf7cbd4a430dc1839da7713f535d9a4c1aa6 (patch) | |
| tree | f8ead02bd7c74c7c826fdfbdc726d1679bd98912 /lib-src | |
| parent | 48c9ce10fb18d0e02565c120c7d841cf66e4c01f (diff) | |
| download | emacs-9d6baf7cbd4a430dc1839da7713f535d9a4c1aa6.tar.gz emacs-9d6baf7cbd4a430dc1839da7713f535d9a4c1aa6.zip | |
(suggest_asking_for_help): Fix having macros in a printf statement.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 10 |
1 files changed, 5 insertions, 5 deletions
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) | |||
| 6484 | static void | 6484 | static void |
| 6485 | suggest_asking_for_help () | 6485 | suggest_asking_for_help () |
| 6486 | { | 6486 | { |
| 6487 | fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n", | 6487 | |
| 6488 | progname, | ||
| 6489 | #ifdef LONG_OPTIONS | 6488 | #ifdef LONG_OPTIONS |
| 6490 | "--help" | 6489 | fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n", |
| 6490 | progname, "--help"); | ||
| 6491 | #else | 6491 | #else |
| 6492 | "-h" | 6492 | fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n", |
| 6493 | progname, "-h"); | ||
| 6493 | #endif | 6494 | #endif |
| 6494 | ); | ||
| 6495 | exit (BAD); | 6495 | exit (BAD); |
| 6496 | } | 6496 | } |
| 6497 | 6497 | ||