summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2000-08-11 00:50:51 +0000
committerKenichi Handa <handa@m17n.org>2000-08-11 00:50:51 +0000
commita50e723f78cb4dae9b42a15ce51e3d8f35dcb1ea (patch)
treeab919b5220d562a9b30da9acb4f6d7e7113befd4
parent379b5ac0b0c953be1f0092210af2c5f4ebe6e35f (diff)
downloademacs-a50e723f78cb4dae9b42a15ce51e3d8f35dcb1ea.tar.gz
(make_lispy_event): Handle the new event type
multibyte_char_keystroke.
-rw-r--r--src/keyboard.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 87e385a3299..4d48c22f30e 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -4444,6 +4444,14 @@ make_lispy_event (event)
return lispy_c;
}
+ case multibyte_char_keystroke:
+ {
+ Lisp_Object lispy_c;
+
+ XSETFASTINT (lispy_c, event->code);
+ return lispy_c;
+ }
+
/* A function key. The symbol may need to have modifier prefixes
tacked onto it. */
case non_ascii_keystroke:
@@ -5464,7 +5472,7 @@ reorder_modifiers (symbol)
Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
into symbol names, or a string specifying a name stem used to
- contruct a symbol name or the form `STEM-N', where N is the decimal
+ construct a symbol name or the form `STEM-N', where N is the decimal
representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
non-nil; otherwise NAME_TABLE is used.