aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero <k0ga@shike2.com>2014-08-17 20:49:33 +0200
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2014-08-17 20:49:33 +0200
commit8f3e6a577d0d9733d356c0b691fea7b523d8ade7 (patch)
tree2f348e2927cc70630de84c587230cc8f7c6f12e8
parentf8b4998b32cbabe2090dc8027720203d6cd2d24d (diff)
downloadst-8f3e6a577d0d9733d356c0b691fea7b523d8ade7.tar.gz
st-8f3e6a577d0d9733d356c0b691fea7b523d8ade7.zip
Fix man page and usage()
Man page was repeating -f option, the second time instead of -i, and this option was lost in usage() message. This patch also indent the output of usage().
-rw-r--r--st.12
-rw-r--r--st.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/st.1 b/st.1
index 7174da2..e655530 100644
--- a/st.1
+++ b/st.1
@@ -42,7 +42,7 @@ The form is [=][<cols>{xX}<rows>][{+-}<xoffset>{+-}<yoffset>]. See
42.BR XParseGeometry (3) 42.BR XParseGeometry (3)
43for further details. 43for further details.
44.TP 44.TP
45.B \-f 45.B \-i
46will fixate the position given with the -g option. 46will fixate the position given with the -g option.
47.TP 47.TP
48.BI \-o " file" 48.BI \-o " file"
diff --git a/st.c b/st.c
index 6e5953a..8f19018 100644
--- a/st.c
+++ b/st.c
@@ -3870,8 +3870,8 @@ run(void) {
3870void 3870void
3871usage(void) { 3871usage(void) {
3872 die("%s " VERSION " (c) 2010-2014 st engineers\n" \ 3872 die("%s " VERSION " (c) 2010-2014 st engineers\n" \
3873 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \ 3873 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
3874 " [-t title] [-w windowid] [-e command ...]\n", argv0); 3874 " [-i] [-t title] [-w windowid] [-e command ...]\n", argv0);
3875} 3875}
3876 3876
3877int 3877int