diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-03-22 06:54:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-03-22 06:54:36 +0000 |
| commit | 29944b73c7130f86697abb86723c5c3cedee02b4 (patch) | |
| tree | bbffbaba9918f7febcd26a2a8f34810aae323998 | |
| parent | 0820c2c2360ad325b0e1a41d22dac907c4007730 (diff) | |
| download | emacs-29944b73c7130f86697abb86723c5c3cedee02b4.tar.gz | |
(Fy_or_n_p): Handle `recenter' response type.
| -rw-r--r-- | src/fns.c | 6 |
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.") answer = 1; break; } + else if (EQ (def, intern ("recenter"))) + { + Frecenter (Qnil); + xprompt = prompt; + continue; + } else if (EQ (def, intern ("quit"))) Vquit_flag = Qt; |
