diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-09-11 23:28:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-09-11 23:28:03 +0000 |
commit | ac9a31be418952ee0560944c2bc3f6a38fc844cd (patch) | |
tree | d8619d6d38518a0c5b0d33b32955199add27afd5 /src/fns.c | |
parent | 974e187b412ba87df851984d1c3f15373e7e82ce (diff) | |
download | emacs-ac9a31be418952ee0560944c2bc3f6a38fc844cd.tar.gz emacs-ac9a31be418952ee0560944c2bc3f6a38fc844cd.tar.bz2 emacs-ac9a31be418952ee0560944c2bc3f6a38fc844cd.zip |
(Fy_or_n_p): Pass new args to read_char.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c index e0b43bd436e..74f184b838e 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1101,7 +1101,7 @@ Also accepts Space to mean yes, or Delete to mean no.") message ("%s(y or n) ", XSTRING (xprompt)->data); cursor_in_echo_area = 1; - obj = read_char (0); + obj = read_char (0, 0, 0, Qnil, 0); if (XTYPE (obj) == Lisp_Int) ans = XINT (obj); else |