summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-03-22 06:54:36 +0000
committerRichard M. Stallman <rms@gnu.org>1993-03-22 06:54:36 +0000
commit29944b73c7130f86697abb86723c5c3cedee02b4 (patch)
treebbffbaba9918f7febcd26a2a8f34810aae323998 /src
parent0820c2c2360ad325b0e1a41d22dac907c4007730 (diff)
downloademacs-29944b73c7130f86697abb86723c5c3cedee02b4.tar.gz
(Fy_or_n_p): Handle `recenter' response type.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c6
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;