diff options
author | Kenichi Handa <handa@m17n.org> | 1998-01-12 12:52:55 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-01-12 12:52:55 +0000 |
commit | d3b8a776aca21110c42515172b8a8e9e41d97070 (patch) | |
tree | 498fff5857fcc9d9e664d16d05020af30e2f2724 /src/keymap.c | |
parent | 6fe3681b0046064995937b822da04855eaf17c8c (diff) | |
download | emacs-d3b8a776aca21110c42515172b8a8e9e41d97070.tar.gz |
(Fkey_description): Remember to set i_before.
and use it in all cases.
Diffstat (limited to 'src/keymap.c')
-rw-r--r-- | src/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index 6e9077805f1..a80b14d538d 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1645,7 +1645,7 @@ spaces are put between sequence elements, etc.") c = XSTRING (keys)->data[i++]; if (c & 0x80) - XSETFASTINT (XVECTOR (vector)->contents[i], + XSETFASTINT (XVECTOR (vector)->contents[i_before], meta_modifier | (c & ~0x80)); else XSETFASTINT (XVECTOR (vector)->contents[i_before], c); |