diff options
| author | Richard M. Stallman | 1992-09-11 23:28:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-09-11 23:28:03 +0000 |
| commit | ac9a31be418952ee0560944c2bc3f6a38fc844cd (patch) | |
| tree | d8619d6d38518a0c5b0d33b32955199add27afd5 | |
| parent | 974e187b412ba87df851984d1c3f15373e7e82ce (diff) | |
| download | emacs-ac9a31be418952ee0560944c2bc3f6a38fc844cd.tar.gz emacs-ac9a31be418952ee0560944c2bc3f6a38fc844cd.zip | |
(Fy_or_n_p): Pass new args to read_char.
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1101,7 +1101,7 @@ Also accepts Space to mean yes, or Delete to mean no.") | |||
| 1101 | message ("%s(y or n) ", XSTRING (xprompt)->data); | 1101 | message ("%s(y or n) ", XSTRING (xprompt)->data); |
| 1102 | cursor_in_echo_area = 1; | 1102 | cursor_in_echo_area = 1; |
| 1103 | 1103 | ||
| 1104 | obj = read_char (0); | 1104 | obj = read_char (0, 0, 0, Qnil, 0); |
| 1105 | if (XTYPE (obj) == Lisp_Int) | 1105 | if (XTYPE (obj) == Lisp_Int) |
| 1106 | ans = XINT (obj); | 1106 | ans = XINT (obj); |
| 1107 | else | 1107 | else |