aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2006-05-25 23:15:57 +0000
committerLuc Teirlinck2006-05-25 23:15:57 +0000
commitba13929931fbe5e179bf3ef552dda750300732d7 (patch)
tree97579301f61c684db9a8bd315aed2fb551372215 /src
parent92aa92fa3822b3ab87d15275c3198ed8af18a006 (diff)
downloademacs-ba13929931fbe5e179bf3ef552dda750300732d7.tar.gz
emacs-ba13929931fbe5e179bf3ef552dda750300732d7.zip
(Fyes_or_no_p): Fread_from_minibuffer now takes only seven args.
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 f1602f0a7fb..b31beb22ff4 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3429,7 +3429,7 @@ is nil, and `use-dialog-box' is non-nil. */)
3429 { 3429 {
3430 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil, 3430 ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil,
3431 Qyes_or_no_p_history, Qnil, 3431 Qyes_or_no_p_history, Qnil,
3432 Qnil, Qnil)); 3432 Qnil));
3433 if (SCHARS (ans) == 3 && !strcmp (SDATA (ans), "yes")) 3433 if (SCHARS (ans) == 3 && !strcmp (SDATA (ans), "yes"))
3434 { 3434 {
3435 UNGCPRO; 3435 UNGCPRO;