diff options
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keymap.c b/src/keymap.c index f7256bfde2a..a1299ec8554 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1342,7 +1342,7 @@ silly_event_symbol_error (Lisp_Object c) | |||
| 1342 | *p = 0; | 1342 | *p = 0; |
| 1343 | 1343 | ||
| 1344 | c = reorder_modifiers (c); | 1344 | c = reorder_modifiers (c); |
| 1345 | keystring = concat2 (build_string (new_mods), XCDR (assoc)); | 1345 | keystring = concat2 (build_local_string (new_mods), XCDR (assoc)); |
| 1346 | 1346 | ||
| 1347 | error ("To bind the key %s, use [?%s], not [%s]", | 1347 | error ("To bind the key %s, use [?%s], not [%s]", |
| 1348 | SDATA (SYMBOL_NAME (c)), SDATA (keystring), | 1348 | SDATA (SYMBOL_NAME (c)), SDATA (keystring), |
| @@ -2245,7 +2245,7 @@ around function keys and event symbols. */) | |||
| 2245 | if (CONSP (key) && INTEGERP (XCAR (key)) && INTEGERP (XCDR (key))) | 2245 | if (CONSP (key) && INTEGERP (XCAR (key)) && INTEGERP (XCDR (key))) |
| 2246 | /* An interval from a map-char-table. */ | 2246 | /* An interval from a map-char-table. */ |
| 2247 | return concat3 (Fsingle_key_description (XCAR (key), no_angles), | 2247 | return concat3 (Fsingle_key_description (XCAR (key), no_angles), |
| 2248 | build_string (".."), | 2248 | build_local_string (".."), |
| 2249 | Fsingle_key_description (XCDR (key), no_angles)); | 2249 | Fsingle_key_description (XCDR (key), no_angles)); |
| 2250 | 2250 | ||
| 2251 | key = EVENT_HEAD (key); | 2251 | key = EVENT_HEAD (key); |
| @@ -3444,7 +3444,7 @@ describe_vector (Lisp_Object vector, Lisp_Object prefix, Lisp_Object args, | |||
| 3444 | { | 3444 | { |
| 3445 | Lisp_Object tem; | 3445 | Lisp_Object tem; |
| 3446 | tem = Fkey_description (prefix, Qnil); | 3446 | tem = Fkey_description (prefix, Qnil); |
| 3447 | elt_prefix = concat2 (tem, build_string (" ")); | 3447 | elt_prefix = concat2 (tem, build_local_string (" ")); |
| 3448 | } | 3448 | } |
| 3449 | prefix = Qnil; | 3449 | prefix = Qnil; |
| 3450 | } | 3450 | } |