summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-11-23 09:11:30 +0000
committerRichard M. Stallman <rms@gnu.org>1994-11-23 09:11:30 +0000
commitfd1636d8661bef63aae58c3a71324bd608b776de (patch)
tree9e98c9ac71ebd26c4c99ddd6e3ee9f53e515877b /src/fns.c
parente494b950c1b612ca6492d68e95f0c2946be26fdc (diff)
downloademacs-fd1636d8661bef63aae58c3a71324bd608b776de.tar.gz
(Fy_or_n_p): Handle exit-prefix in query-replace-map.
Diffstat (limited to 'src/fns.c')
-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.")
}
else if (EQ (def, intern ("quit")))
Vquit_flag = Qt;
+ /* We want to exit this command for exit-prefix,
+ and this is the only way to do it. */
+ else if (EQ (def, intern ("exit-prefix")))
+ Vquit_flag = Qt;
QUIT;