* lexsup.c (parse_args): Add a comment noting a fall-through.

This commit is contained in:
Ben Elliston 2006-10-24 03:35:49 +00:00
parent ede602d7c8
commit 058a363ddc
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-10-24 Ben Elliston <bje@au.ibm.com>
* lexsup.c (parse_args): Add a comment noting a fall-through.
2006-10-24 H.J. Lu <hongjiu.lu@intel.com> 2006-10-24 H.J. Lu <hongjiu.lu@intel.com>
* configure.in (AC_CHECK_HEADERS): Add limits.h and sys/param.h. * configure.in (AC_CHECK_HEADERS): Add limits.h and sys/param.h.

View File

@ -680,6 +680,8 @@ parse_args (unsigned argc, char **argv)
{ {
case '?': case '?':
einfo (_("%P: unrecognized option '%s'\n"), argv[last_optind]); einfo (_("%P: unrecognized option '%s'\n"), argv[last_optind]);
/* Fall through. */
default: default:
einfo (_("%P%F: use the --help option for usage information\n")); einfo (_("%P%F: use the --help option for usage information\n"));