diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-10-12 13:09:15 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-10-12 13:09:15 -0700 |
commit | cc541e588a000c9aa6f4d732e95b67e2f01433d6 (patch) | |
tree | b5a74167f1b7cf4f1a667dd731056ad769dbf9e3 /src/keymap.c | |
parent | dfbb4d511ee5b0a6234ffa393deaaaf56a2651b7 (diff) | |
download | emacs-cc541e588a000c9aa6f4d732e95b67e2f01433d6.tar.gz |
Spelling fixes.
Diffstat (limited to 'src/keymap.c')
-rw-r--r-- | src/keymap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/keymap.c b/src/keymap.c index d633bdcaae7..c7c7d196c22 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1339,8 +1339,8 @@ silly_event_symbol_error (Lisp_Object c) *p = 0; c = reorder_modifiers (c); - AUTO_STRING (new_modstring, new_mods); - keystring = concat2 (new_modstring, XCDR (assoc)); + AUTO_STRING (new_mods_string, new_mods); + keystring = concat2 (new_mods_string, XCDR (assoc)); error ("To bind the key %s, use [?%s], not [%s]", SDATA (SYMBOL_NAME (c)), SDATA (keystring), @@ -2245,9 +2245,9 @@ around function keys and event symbols. */) if (CONSP (key) && INTEGERP (XCAR (key)) && INTEGERP (XCDR (key))) /* An interval from a map-char-table. */ { - AUTO_STRING (dotdot, ".."); + AUTO_STRING (dot_dot, ".."); return concat3 (Fsingle_key_description (XCAR (key), no_angles), - dotdot, + dot_dot, Fsingle_key_description (XCDR (key), no_angles)); } |