aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2004-11-21 00:57:49 +0000
committerLuc Teirlinck2004-11-21 00:57:49 +0000
commit8181f402eda0338aac54f09750690bb8e011e6fa (patch)
tree69e1199041b07fce672e435fb7afa82311b8a3a1 /src
parentfd6866c86dc0f28c483acc091915cfc2a48e90b9 (diff)
downloademacs-8181f402eda0338aac54f09750690bb8e011e6fa.tar.gz
emacs-8181f402eda0338aac54f09750690bb8e011e6fa.zip
(Fyes_or_no_p): Call Fread_from_minibuffer with extra argument.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index d9f697a689b..c436649f73d 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3304,7 +3304,7 @@ is nil, and `use-dialog-box' is non-nil. */)
3304 { 3304 {
3305 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil, 3305 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil,
3306 Qyes_or_no_p_history, Qnil, 3306 Qyes_or_no_p_history, Qnil,
3307 Qnil)); 3307 Qnil, Qnil));
3308 if (SCHARS (ans) == 3 && !strcmp (SDATA (ans), "yes")) 3308 if (SCHARS (ans) == 3 && !strcmp (SDATA (ans), "yes"))
3309 { 3309 {
3310 UNGCPRO; 3310 UNGCPRO;