(Fy_or_n_p): Handle `recenter' response type.

This commit is contained in:
Richard M. Stallman 1993-03-22 06:54:36 +00:00
parent 0820c2c236
commit 29944b73c7

View file

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