diff options
| author | Kenichi Handa | 1998-01-12 12:52:55 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-01-12 12:52:55 +0000 |
| commit | d3b8a776aca21110c42515172b8a8e9e41d97070 (patch) | |
| tree | 498fff5857fcc9d9e664d16d05020af30e2f2724 /src/keymap.c | |
| parent | 6fe3681b0046064995937b822da04855eaf17c8c (diff) | |
| download | emacs-d3b8a776aca21110c42515172b8a8e9e41d97070.tar.gz emacs-d3b8a776aca21110c42515172b8a8e9e41d97070.zip | |
(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.") | |||
| 1645 | c = XSTRING (keys)->data[i++]; | 1645 | c = XSTRING (keys)->data[i++]; |
| 1646 | 1646 | ||
| 1647 | if (c & 0x80) | 1647 | if (c & 0x80) |
| 1648 | XSETFASTINT (XVECTOR (vector)->contents[i], | 1648 | XSETFASTINT (XVECTOR (vector)->contents[i_before], |
| 1649 | meta_modifier | (c & ~0x80)); | 1649 | meta_modifier | (c & ~0x80)); |
| 1650 | else | 1650 | else |
| 1651 | XSETFASTINT (XVECTOR (vector)->contents[i_before], c); | 1651 | XSETFASTINT (XVECTOR (vector)->contents[i_before], c); |