diff options
| author | Kenichi Handa | 2000-08-11 00:50:51 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-08-11 00:50:51 +0000 |
| commit | a50e723f78cb4dae9b42a15ce51e3d8f35dcb1ea (patch) | |
| tree | ab919b5220d562a9b30da9acb4f6d7e7113befd4 /src | |
| parent | 379b5ac0b0c953be1f0092210af2c5f4ebe6e35f (diff) | |
| download | emacs-a50e723f78cb4dae9b42a15ce51e3d8f35dcb1ea.tar.gz emacs-a50e723f78cb4dae9b42a15ce51e3d8f35dcb1ea.zip | |
(make_lispy_event): Handle the new event type
multibyte_char_keystroke.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 10 |
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) | |||
| 4444 | return lispy_c; | 4444 | return lispy_c; |
| 4445 | } | 4445 | } |
| 4446 | 4446 | ||
| 4447 | case multibyte_char_keystroke: | ||
| 4448 | { | ||
| 4449 | Lisp_Object lispy_c; | ||
| 4450 | |||
| 4451 | XSETFASTINT (lispy_c, event->code); | ||
| 4452 | return lispy_c; | ||
| 4453 | } | ||
| 4454 | |||
| 4447 | /* A function key. The symbol may need to have modifier prefixes | 4455 | /* A function key. The symbol may need to have modifier prefixes |
| 4448 | tacked onto it. */ | 4456 | tacked onto it. */ |
| 4449 | case non_ascii_keystroke: | 4457 | case non_ascii_keystroke: |
| @@ -5464,7 +5472,7 @@ reorder_modifiers (symbol) | |||
| 5464 | 5472 | ||
| 5465 | Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes | 5473 | Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes |
| 5466 | into symbol names, or a string specifying a name stem used to | 5474 | into symbol names, or a string specifying a name stem used to |
| 5467 | contruct a symbol name or the form `STEM-N', where N is the decimal | 5475 | construct a symbol name or the form `STEM-N', where N is the decimal |
| 5468 | representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is | 5476 | representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is |
| 5469 | non-nil; otherwise NAME_TABLE is used. | 5477 | non-nil; otherwise NAME_TABLE is used. |
| 5470 | 5478 | ||