Get rid of long stale usage message code.

-Erik
This commit is contained in:
Eric Andersen
2001-02-17 16:52:35 +00:00
parent 3d20f772c2
commit b50da53e0c
4 changed files with 12 additions and 20 deletions

View File

@@ -670,11 +670,8 @@ extern int sed_main(int argc, char **argv)
#endif
/* do normal option parsing */
while ((opt = getopt(argc, argv, "hne:f:")) > 0) {
while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
switch (opt) {
case 'h':
show_usage();
break;
case 'n':
be_quiet++;
break;
@@ -684,6 +681,8 @@ extern int sed_main(int argc, char **argv)
case 'f':
load_cmd_file(optarg);
break;
default:
show_usage();
}
}