Introduction
Introduction Statistics Contact Development Disclaimer Help
tFix forgotten bracket and duplicate option in usage() - st - [fork] customized…
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit 6d636beb229cebf3b897446c72c7a341bee9f820
parent 6e70bb97d4e98a5e2fa7c5488b0cba1da140b78f
Author: Quentin Rameau <[email protected]>
Date: Mon, 1 Feb 2016 12:20:33 +0100
Fix forgotten bracket and duplicate option in usage()
Scratch the preceding patch, this one is more correct
(don't forget to 'git am --scissors' ;))
-- >8 --
Also reformat the strings in a saner layout
Signed-off-by: Christoph Lohmann <[email protected]>
Diffstat:
M st.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/st.c b/st.c
t@@ -4333,12 +4333,14 @@ run(void)
void
usage(void)
{
- die("usage: %s "
- "[-aiv] [-c class] [-f font] [-g geometry] [-n name] [-o file]\n …
- " [-T title] [-t title] [-w windowid] [[-e] command [args ...]\n …
- " %s [-aiv] [-c class] [-f font] [-g geometry] [-n name] [-o file]\n …
- " [-o file] [-T title] [-t title] [-w windowid] -l line"
- " [stty_args ...]\n", argv0, argv0);
+ die("usage: %s [-aiv] [-c class] [-f font] [-g geometry]"
+ " [-n name] [-o file]\n"
+ " [-T title] [-t title] [-w windowid]"
+ " [[-e] command [args ...]]\n"
+ " %s [-aiv] [-c class] [-f font] [-g geometry]"
+ " [-n name] [-o file]\n"
+ " [-T title] [-t title] [-w windowid] -l line"
+ " [stty_args ...]\n", argv0, argv0);
}
int
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.