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[]) {
3332 break; 3332 break;
3333 case 'e': 3333 case 'e':
3334 /* eat all remaining arguments */ 3334 /* eat all remaining arguments */
3335 opt_cmd = &argv[1]; 3335 if(argc > 1)
3336 opt_cmd = &argv[1];
3336 goto run; 3337 goto run;
3337 case 'f': 3338 case 'f':
3338 opt_font = EARGF(usage()); 3339 opt_font = EARGF(usage());