diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fid.c | 1 | ||||
-rw-r--r-- | src/fnid.c | 1 | ||||
-rw-r--r-- | src/lid.c | 10 | ||||
-rw-r--r-- | src/mkid.c | 1 | ||||
-rw-r--r-- | src/xtokid.c | 1 |
5 files changed, 11 insertions, 3 deletions
@@ -90,6 +90,7 @@ also given list the identifiers that occur in both files.\n\ --help display this help and exit\n\ --version output version information and exit\n\ ")); + printf (_("\nReport bugs to " PACKAGE_BUGREPORT "\n\n")); exit (0); } @@ -80,6 +80,7 @@ using shell-style wildcards.\n\ --help display this help and exit\n\ --version output version information and exit\n\ ")); + printf (_("\nReport bugs to " PACKAGE_BUGREPORT "\n\n")); exit (0); } @@ -284,6 +284,7 @@ matched identifier followed by the list of file names in which it occurs.\n\ --version output version information and exit\n\ "), (separator_style == ss_braces ? _("braces") : _("space"))); + printf (_("\nReport bugs to " PACKAGE_BUGREPORT "\n\n")); exit (0); } @@ -1369,9 +1370,12 @@ is_number (char const *str) str += 2; str += strspn (str, "0123456789aAbBcCdDeEfF"); } - else - str += strspn (str, "0123456789"); - str += strspn (str, "uUlL"); + else { + size_t offn; + str += (offn = strspn (str, "0123456789")); + if (offn) + str += strspn (str, "uUlL"); + } return (*str == '\0'); } @@ -175,6 +175,7 @@ Note that the `--include' and `--exclude' options are mutually-exclusive.\n\ The following arguments apply to the language-specific scanners:\n\ ")); language_help_me (); + printf (_("\nReport bugs to " PACKAGE_BUGREPORT "\n\n")); exit (0); } diff --git a/src/xtokid.c b/src/xtokid.c index fc3c4cf..6555784 100644 --- a/src/xtokid.c +++ b/src/xtokid.c @@ -84,6 +84,7 @@ Print all tokens found in a source file.\n\ The following arguments apply to the language-specific scanners:\n\ ")); language_help_me (); + printf (_("\nReport bugs to " PACKAGE_BUGREPORT "\n\n")); exit (0); } |