1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00

(Fy_or_n_p): Handle exit-prefix in query-replace-map.

This commit is contained in:
Richard M. Stallman 1994-11-23 09:11:30 +00:00
parent 59f4a401d6
commit ec63af1b57

View File

@ -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;