# HG changeset patch # User Kenichi Handa # Date 965955051 0 # Node ID 7a0d5d24269e614117c3bb38c0be65060e55d88f # Parent 13c7c5e6cc36dc4c0586e8a78a15e2cf04764526 (make_lispy_event): Handle the new event type multibyte_char_keystroke. diff -r 13c7c5e6cc36 -r 7a0d5d24269e src/keyboard.c --- a/src/keyboard.c Fri Aug 11 00:49:39 2000 +0000 +++ b/src/keyboard.c Fri Aug 11 00:50:51 2000 +0000 @@ -4444,6 +4444,14 @@ 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 @@ 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.