aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index 0ef7ed3c9e7..c08d8361147 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1202,6 +1202,10 @@ Also accepts Space to mean yes, or Delete to mean no.")
1202 } 1202 }
1203 else if (EQ (def, intern ("quit"))) 1203 else if (EQ (def, intern ("quit")))
1204 Vquit_flag = Qt; 1204 Vquit_flag = Qt;
1205 /* We want to exit this command for exit-prefix,
1206 and this is the only way to do it. */
1207 else if (EQ (def, intern ("exit-prefix")))
1208 Vquit_flag = Qt;
1205 1209
1206 QUIT; 1210 QUIT;
1207 1211