Make st work with a plain -e command. - st - simple terminal HTML git clone https://git.parazyd.org/st DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 684cf55a0d21da19a6e9e4a490a7c4dd3334638d DIR parent b1813b14d956978ae8af37166b3cccc3a7b4b720 HTML 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: M st.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR 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());