aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2005-01-28 16:25:10 +0000
committerStefan Monnier <[email protected]>2005-01-28 16:25:10 +0000
commit996f9cdebb49d38bd5b0718d1a0f9f2479ef077a (patch)
tree806eec6f19d9963c836c23ba47b2e72fa20698ab
parent2d65673fc14d611dbead03799512303324ba44fc (diff)
(access_keymap): YAILOM.
-rw-r--r--src/keymap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keymap.c b/src/keymap.c
index ff7836ce23..260d7232bb 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1,6 +1,6 @@
/* Manipulation of keymaps
- Copyright (C) 1985, 86,87,88,93,94,95,98,99, 2000, 01, 2004
- Free Software Foundation, Inc.
+ Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1998, 1999, 2000,
+ 2001, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -530,7 +530,7 @@ access_keymap (map, idx, t_ok, noinherit, autoload)
GCPRO1 (map);
/* A strange value in which Meta is set would cause
infinite recursion. Protect against that. */
- if (meta_prefix_char & CHAR_META)
+ if (XINT (meta_prefix_char) & CHAR_META)
meta_prefix_char = make_number (27);
meta_map = get_keymap (access_keymap (map, meta_prefix_char,
t_ok, noinherit, autoload),