From ec63af1b57d3a68fff08b9297cb84c78189229fa Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 23 Nov 1994 09:11:30 +0000 Subject: [PATCH] (Fy_or_n_p): Handle exit-prefix in query-replace-map. --- src/fns.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.39.5