aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-03-14 20:56:05 +0000
committerJim Blandy1993-03-14 20:56:05 +0000
commit6a8a9750e8121d30aff8e7cddbb67d4c39604e69 (patch)
tree98bba4eee0f451476fc2ed8bd705cc522cb97749
parentda33ff575d5279e6de3b90771a385789d3e2dc8b (diff)
downloademacs-6a8a9750e8121d30aff8e7cddbb67d4c39604e69.tar.gz
emacs-6a8a9750e8121d30aff8e7cddbb67d4c39604e69.zip
* fns.c (Fy_or_n_p): Display the answer.
-rw-r--r--src/fns.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index 21dd3cf6671..75c0dfbf8a5 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1150,6 +1150,9 @@ Also accepts Space to mean yes, or Delete to mean no.")
1150 } 1150 }
1151 } 1151 }
1152 UNGCPRO; 1152 UNGCPRO;
1153
1154 message ("%s(y or n) %c", XSTRING (xprompt)->data, answer ? 'y' : 'n');
1155
1153 return answer ? Qt : Qnil; 1156 return answer ? Qt : Qnil;
1154} 1157}
1155 1158