st

Simple Terminal
git clone git://r-36.net/st
Log | Files | Refs | README | LICENSE

commit 684cf55a0d21da19a6e9e4a490a7c4dd3334638d
parent b1813b14d956978ae8af37166b3cccc3a7b4b720
Author: Christoph Lohmann <20h@r-36.net>
Date:   Wed, 10 Apr 2013 17:48:32 +0200

Make st work with a plain -e command.

Diffstat:
st.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/st.c b/st.c @@ -3332,7 +3332,8 @@ main(int argc, char *argv[]) { break; case 'e': /* eat all remaining arguments */ - opt_cmd = &argv[1]; + if(argc > 1) + opt_cmd = &argv[1]; goto run; case 'f': opt_font = EARGF(usage());