aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c3
1 files changed, 2 insertions, 1 deletions
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());