]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_lispy_event): Handle the new event type
authorKenichi Handa <handa@m17n.org>
Fri, 11 Aug 2000 00:50:51 +0000 (00:50 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 11 Aug 2000 00:50:51 +0000 (00:50 +0000)
multibyte_char_keystroke.

src/keyboard.c

index 87e385a329902a66dca72af73b261dcc9e605e43..4d48c22f30e4fb11dec12d203b3b8e44b6a59906 100644 (file)
@@ -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.