diff options
| author | Miles Bader | 2004-12-08 05:02:30 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-12-08 05:02:30 +0000 |
| commit | 000fc2b1fad05ccd9e6cdb5810febb091f4b5738 (patch) | |
| tree | 808f1473847c7c44bc8b28d8edfa086ec25035d1 /src/keymap.c | |
| parent | 5bc63b073c3c75dbfab1f14423f01cc615e26eeb (diff) | |
| parent | ad136a7c3b310fa7240dd2adf62f23b454782bd0 (diff) | |
| download | emacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.tar.gz emacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-74
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-709
Update from CVS: src/indent.c (Fvertical_motion): Fix last change.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-710
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-715
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-716
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-74
Update from CVS
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 e76cbf5c00a..5a7c8b19123 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1273,7 +1273,7 @@ recognize the default bindings, just as `read-key-sequence' does. */) | |||
| 1273 | c = Fevent_convert_list (c); | 1273 | c = Fevent_convert_list (c); |
| 1274 | 1274 | ||
| 1275 | /* Turn the 8th bit of string chars into a meta modifier. */ | 1275 | /* Turn the 8th bit of string chars into a meta modifier. */ |
| 1276 | if (XINT (c) & 0x80 && STRINGP (key)) | 1276 | if (INTEGERP (c) && XINT (c) & 0x80 && STRINGP (key)) |
| 1277 | XSETINT (c, (XINT (c) | meta_modifier) & ~0x80); | 1277 | XSETINT (c, (XINT (c) | meta_modifier) & ~0x80); |
| 1278 | 1278 | ||
| 1279 | /* Allow string since binding for `menu-bar-select-buffer' | 1279 | /* Allow string since binding for `menu-bar-select-buffer' |