st
simple terminal
git clone https://9o.is/git/st.git
commit fb78f27bbfe1b6d07ae357b71e305392aac6c779 parent f7eda2d7e91bc89e9b18db9d6981f9bf4e048c69 Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Sun, 17 Aug 2014 20:49:33 +0200 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(). Diffstat:
| M | st.1 | | | 2 | +- |
| M | st.c | | | 4 | ++-- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/st.1 b/st.1 @@ -42,7 +42,7 @@ The form is [=][<cols>{xX}<rows>][{+-}<xoffset>{+-}<yoffset>]. See .BR XParseGeometry (3) for further details. .TP -.B \-f +.B \-i will fixate the position given with the -g option. .TP .BI \-o " file" diff --git a/st.c b/st.c @@ -3870,8 +3870,8 @@ run(void) { void usage(void) { die("%s " VERSION " (c) 2010-2014 st engineers\n" \ - "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \ - " [-t title] [-w windowid] [-e command ...]\n", argv0); + "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n" + " [-i] [-t title] [-w windowid] [-e command ...]\n", argv0); } int