* fns.c (Fy_or_n_p): Display the answer.

This commit is contained in:
Jim Blandy 1993-03-14 20:56:05 +00:00
parent da33ff575d
commit 6a8a9750e8

View file

@ -1150,6 +1150,9 @@ Also accepts Space to mean yes, or Delete to mean no.")
}
}
UNGCPRO;
message ("%s(y or n) %c", XSTRING (xprompt)->data, answer ? 'y' : 'n');
return answer ? Qt : Qnil;
}