aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorPaul Eggert2014-10-12 13:09:15 -0700
committerPaul Eggert2014-10-12 13:09:15 -0700
commitcc541e588a000c9aa6f4d732e95b67e2f01433d6 (patch)
treeb5a74167f1b7cf4f1a667dd731056ad769dbf9e3 /src/keymap.c
parentdfbb4d511ee5b0a6234ffa393deaaaf56a2651b7 (diff)
downloademacs-cc541e588a000c9aa6f4d732e95b67e2f01433d6.tar.gz
emacs-cc541e588a000c9aa6f4d732e95b67e2f01433d6.zip
Spelling fixes.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c8
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)
1339 *p = 0; 1339 *p = 0;
1340 1340
1341 c = reorder_modifiers (c); 1341 c = reorder_modifiers (c);
1342 AUTO_STRING (new_modstring, new_mods); 1342 AUTO_STRING (new_mods_string, new_mods);
1343 keystring = concat2 (new_modstring, XCDR (assoc)); 1343 keystring = concat2 (new_mods_string, XCDR (assoc));
1344 1344
1345 error ("To bind the key %s, use [?%s], not [%s]", 1345 error ("To bind the key %s, use [?%s], not [%s]",
1346 SDATA (SYMBOL_NAME (c)), SDATA (keystring), 1346 SDATA (SYMBOL_NAME (c)), SDATA (keystring),
@@ -2245,9 +2245,9 @@ 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 { 2247 {
2248 AUTO_STRING (dotdot, ".."); 2248 AUTO_STRING (dot_dot, "..");
2249 return concat3 (Fsingle_key_description (XCAR (key), no_angles), 2249 return concat3 (Fsingle_key_description (XCAR (key), no_angles),
2250 dotdot, 2250 dot_dot,
2251 Fsingle_key_description (XCDR (key), no_angles)); 2251 Fsingle_key_description (XCDR (key), no_angles));
2252 } 2252 }
2253 2253