aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index 75c0dfbf8a5..27927d73abe 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1131,6 +1131,12 @@ Also accepts Space to mean yes, or Delete to mean no.")
1131 answer = 1; 1131 answer = 1;
1132 break; 1132 break;
1133 } 1133 }
1134 else if (EQ (def, intern ("recenter")))
1135 {
1136 Frecenter (Qnil);
1137 xprompt = prompt;
1138 continue;
1139 }
1134 else if (EQ (def, intern ("quit"))) 1140 else if (EQ (def, intern ("quit")))
1135 Vquit_flag = Qt; 1141 Vquit_flag = Qt;
1136 1142