From: Christoph Lohmann <20h@r-36.net>
Date: Wed, 10 Apr 2013 15:48:32 +0000 (+0200)
Subject: Make st work with a plain -e command.
X-Git-Url: https://git.owens.tech/about.html/about.html/git?a=commitdiff_plain;h=684cf55a0d21da19a6e9e4a490a7c4dd3334638d;p=st.git

Make st work with a plain -e command.
---

diff --git a/st.c b/st.c
index c938ff4..93058b9 100644
--- 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());