# HG changeset patch # User Kenichi Handa # Date 1204691339 0 # Node ID f45795db28f6453a02efb9d53ae05ae4186aefc0 # Parent 90410eaf4c76592ab6aea55351bff7b876d87d6c (Fread_char): Resolve modifiers. (Fread_char_exclusive): Likewise. diff -r 90410eaf4c76 -r f45795db28f6 src/lread.c --- a/src/lread.c Wed Mar 05 04:25:10 2008 +0000 +++ b/src/lread.c Wed Mar 05 04:28:59 2008 +0000 @@ -771,10 +771,13 @@ DEFUN ("read-char", Fread_char, Sread_char, 0, 3, 0, doc: /* Read a character from the command input (keyboard or macro). It is returned as a number. +If the character has modifiers, they are resolved and reflected to the +character code if possible (e.g. C-SPC -> 0). + If the user generates an event which is not a character (i.e. a mouse click or function key event), `read-char' signals an error. As an -exception, switch-frame events are put off until non-ASCII events can -be read. +exception, switch-frame events are put off until non-character events +can be read. If you want to read non-character events, or ignore them, call `read-event' or `read-char-exclusive' instead. @@ -789,9 +792,14 @@ (prompt, inherit_input_method, seconds) Lisp_Object prompt, inherit_input_method, seconds; { + Lisp_Object val; + int c; + if (! NILP (prompt)) message_with_string ("%s", prompt, 0); - return read_filtered_event (1, 1, 1, ! NILP (inherit_input_method), seconds); + val = read_filtered_event (1, 1, 1, ! NILP (inherit_input_method), seconds); + c = XINT (val); + return make_number (char_resolve_modifier_mask (c)); } DEFUN ("read-event", Fread_event, Sread_event, 0, 3, 0, @@ -815,6 +823,8 @@ DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 3, 0, doc: /* Read a character from the command input (keyboard or macro). It is returned as a number. Non-character events are ignored. +If the character has modifiers, they are resolved and reflected to the +character code if possible (e.g. C-SPC -> 0). If the optional argument PROMPT is non-nil, display that as a prompt. If the optional argument INHERIT-INPUT-METHOD is non-nil and some @@ -827,9 +837,14 @@ (prompt, inherit_input_method, seconds) Lisp_Object prompt, inherit_input_method, seconds; { + Lisp_Object val; + int c; + if (! NILP (prompt)) message_with_string ("%s", prompt, 0); - return read_filtered_event (1, 1, 0, ! NILP (inherit_input_method), seconds); + val = read_filtered_event (1, 1, 0, ! NILP (inherit_input_method), seconds); + c = XINT (val); + return make_number (char_resolve_modifier_mask (c)); } DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0,