]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fread_char, Fread_char_exclusive): If no character event is read
authorChong Yidong <cyd@stupidchicken.com>
Thu, 14 Aug 2008 19:24:54 +0000 (19:24 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 14 Aug 2008 19:24:54 +0000 (19:24 +0000)
before timeout is reached, return nil, rather than converting to a
number.

src/lread.c

index f36162b1a8528930a0e449ea554507e9b026cd3d..58faf747d1f983d61709d5a4020d92717026fbe4 100644 (file)
@@ -791,13 +791,13 @@ floating-point value.  */)
      Lisp_Object prompt, inherit_input_method, seconds;
 {
   Lisp_Object val;
-  int c;
 
   if (! NILP (prompt))
     message_with_string ("%s", prompt, 0);
   val = read_filtered_event (1, 1, 1, ! NILP (inherit_input_method), seconds);
-  c = XINT (val);
-  return make_number (char_resolve_modifier_mask (c));
+
+  return (NILP (val) ? Qnil
+         : make_number (char_resolve_modifier_mask (XINT (val))));
 }
 
 DEFUN ("read-event", Fread_event, Sread_event, 0, 3, 0,
@@ -836,13 +836,14 @@ floating-point value.  */)
      Lisp_Object prompt, inherit_input_method, seconds;
 {
   Lisp_Object val;
-  int c;
 
   if (! NILP (prompt))
     message_with_string ("%s", prompt, 0);
+
   val = read_filtered_event (1, 1, 0, ! NILP (inherit_input_method), seconds);
-  c = XINT (val);
-  return make_number (char_resolve_modifier_mask (c));
+
+  return (NILP (val) ? Qnil
+         : make_number (char_resolve_modifier_mask (XINT (val))));
 }
 
 DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0,