aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Farina <tfransosi@gmail.com>2011-04-23 11:23:13 -0300
committerLinus Torvalds <torvalds@linux-foundation.org>2011-08-22 09:37:08 -0700
commit2d0b5685594d23355ed9aa9f6f43acdc7b6c64bf (patch)
tree6e29335014a01e2828a7833f1626ebe07f3da277
parenta511e03e609001935e8671f8aa3764aca9b5a803 (diff)
downloaduemacs-2d0b5685594d23355ed9aa9f6f43acdc7b6c64bf.tar.gz
uemacs: Add -g options to the output usage.
While I'm here, improve the word of the above two options. Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c
index fa78ce4..9331b38 100644
--- a/main.c
+++ b/main.c
@@ -92,8 +92,9 @@ void usage(int status)
{
printf("Usage: %s filename\n", PROGRAM_NAME);
printf(" or: %s [options]\n\n", PROGRAM_NAME);
- fputs(" + go to end of buffer n\n", stdout);
- fputs(" +<n> go to line n\n", stdout);
+ fputs(" + start at the end of file\n", stdout);
+ fputs(" +<n> start at line <n>\n", stdout);
+ fputs(" -g[G]<n> go to line <n>\n", stdout);
fputs(" --help display this help and exit\n", stdout);
fputs(" --version output version information and exit\n", stdout);