summaryrefslogtreecommitdiff
path: root/src/seq.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-12-15 20:46:30 +0000
committerJim Meyering <jim@meyering.net>2001-12-15 20:46:30 +0000
commit2fae9e5d26536fc61ad06a3d295c9bb8e40d215e (patch)
tree95b997f03d6570981ce5d104a4500b6ffd446768 /src/seq.c
parent9be58099c4347a6bc27609b88b5f3ac8c1e054ac (diff)
downloadcoreutils-2fae9e5d26536fc61ad06a3d295c9bb8e40d215e.tar.xz
Use new macros, HELP_OPTION_DESCRIPTION and VERSION_OPTION_DESCRIPTION
instead of hard-coding --help and --version descriptions. Split --help output into smaller pieces. Use fputs, not printf.
Diffstat (limited to 'src/seq.c')
-rw-r--r--src/seq.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/seq.c b/src/seq.c
index 001278fe8..5a8608992 100644
--- a/src/seq.c
+++ b/src/seq.c
@@ -1,5 +1,5 @@
/* seq - print sequence of numbers to standard output.
- Copyright (C) 1994-2000 Free Software Foundation, Inc.
+ Copyright (C) 1994-2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -84,21 +84,23 @@ Usage: %s [OPTION]... LAST\n\
or: %s [OPTION]... FIRST LAST\n\
or: %s [OPTION]... FIRST INCREMENT LAST\n\
"), program_name, program_name, program_name);
- printf (_("\
+ fputs (_("\
Print numbers from FIRST to LAST, in steps of INCREMENT.\n\
\n\
- -f, --format FORMAT use printf(3) style FORMAT (default: %%g)\n\
+ -f, --format FORMAT use printf(3) style FORMAT (default: %g)\n\
-s, --separator STRING use STRING to separate numbers (default: \\n)\n\
-w, --equal-width equalize width by padding with leading zeroes\n\
- --help display this help and exit\n\
- --version output version information and exit\n\
+"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
+ fputs (_("\
\n\
If FIRST or INCREMENT is omitted, it defaults to 1.\n\
FIRST, INCREMENT, and LAST are interpreted as floating point values.\n\
INCREMENT should be positive if FIRST is smaller than LAST, and negative\n\
otherwise. When given, the FORMAT argument must contain exactly one of\n\
-the printf-style, floating point output formats %%e, %%f, %%g\n\
-"));
+the printf-style, floating point output formats %e, %f, %g\n\
+"), stdout);
puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
}
exit (status);