aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-23 09:11:30 +0000
committerRichard M. Stallman1994-11-23 09:11:30 +0000
commitec63af1b57d3a68fff08b9297cb84c78189229fa (patch)
treefab7090edaa98a7c7bc603a510bdea3870702f97 /src
parent59f4a401d618048e0976879e9e8c1b6db90a5dac (diff)
downloademacs-ec63af1b57d3a68fff08b9297cb84c78189229fa.tar.gz
emacs-ec63af1b57d3a68fff08b9297cb84c78189229fa.zip
(Fy_or_n_p): Handle exit-prefix in query-replace-map.
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