aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fns.c2
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.")
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