From: Kenichi Handa Date: Tue, 26 Aug 1997 11:42:33 +0000 (+0000) Subject: (Fyes_or_no_p): Call Fread_from_minibuffer X-Git-Tag: emacs-20.1~406 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b24014d4ab5bfa62966ea657bb28a03fe3592746;p=emacs.git (Fyes_or_no_p): Call Fread_from_minibuffer with INHERIT-INPUT-METHOD nil. --- diff --git a/src/fns.c b/src/fns.c index 11c552a5f77..29ecef48712 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1877,7 +1877,8 @@ and can edit it until it has been confirmed.") while (1) { ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil, - Qyes_or_no_p_history, Qnil)); + Qyes_or_no_p_history, Qnil, + Qnil)); if (XSTRING (ans)->size == 3 && !strcmp (XSTRING (ans)->data, "yes")) { UNGCPRO;