aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-09-29 18:06:24 +0000
committerDave Love2003-09-29 18:06:24 +0000
commitf69559dd10959fc102a8fa7e61149c8645f71801 (patch)
tree9e301b830ce0e715de05af4f179888632afcb3d1 /src
parent3a0ae1f3b061da083887f1b8a147f4e3f8779cbf (diff)
downloademacs-f69559dd10959fc102a8fa7e61149c8645f71801.tar.gz
emacs-f69559dd10959fc102a8fa7e61149c8645f71801.zip
(Fset_keymap_parent, map_keymap, Fcopy_keymap)
(Faccessible_keymaps, where_is_internal): Remove unused vars.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/keymap.c b/src/keymap.c
index c274183de49..76431a516aa 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -411,10 +411,7 @@ PARENT should be nil or another keymap. */)
411 411
412 if (CHAR_TABLE_P (XCAR (list))) 412 if (CHAR_TABLE_P (XCAR (list)))
413 { 413 {
414 Lisp_Object indices[3]; 414 map_char_table (fix_submap_inheritance, Qnil, XCAR (list), keymap);
415
416 map_char_table (fix_submap_inheritance, Qnil,
417 XCAR (list), keymap);
418 } 415 }
419 } 416 }
420 417
@@ -685,7 +682,6 @@ map_keymap (map, fun, args, data, autoload)
685 } 682 }
686 else if (CHAR_TABLE_P (binding)) 683 else if (CHAR_TABLE_P (binding))
687 { 684 {
688 Lisp_Object indices[3];
689 map_char_table (map_keymap_char_table_item, Qnil, binding, 685 map_char_table (map_keymap_char_table_item, Qnil, binding,
690 Fcons (make_save_value (fun, 0), 686 Fcons (make_save_value (fun, 0),
691 Fcons (make_save_value (data, 0), 687 Fcons (make_save_value (data, 0),
@@ -1023,7 +1019,6 @@ is not copied. */)
1023 Lisp_Object elt = XCAR (keymap); 1019 Lisp_Object elt = XCAR (keymap);
1024 if (CHAR_TABLE_P (elt)) 1020 if (CHAR_TABLE_P (elt))
1025 { 1021 {
1026 Lisp_Object indices[3];
1027 elt = Fcopy_sequence (elt); 1022 elt = Fcopy_sequence (elt);
1028 map_char_table (copy_keymap_1, Qnil, elt, elt); 1023 map_char_table (copy_keymap_1, Qnil, elt, elt);
1029 } 1024 }
@@ -1907,8 +1902,6 @@ then the value includes only maps for prefixes that start with PREFIX. */)
1907 1902
1908 if (CHAR_TABLE_P (elt)) 1903 if (CHAR_TABLE_P (elt))
1909 { 1904 {
1910 Lisp_Object indices[3];
1911
1912 map_char_table (accessible_keymaps_char_table, Qnil, 1905 map_char_table (accessible_keymaps_char_table, Qnil,
1913 elt, Fcons (Fcons (maps, make_number (is_metized)), 1906 elt, Fcons (Fcons (maps, make_number (is_metized)),
1914 Fcons (tail, thisseq))); 1907 Fcons (tail, thisseq)));
@@ -2378,7 +2371,6 @@ where_is_internal (definition, keymaps, firstonly, noindirect, no_remap)
2378 } 2371 }
2379 else if (CHAR_TABLE_P (elt)) 2372 else if (CHAR_TABLE_P (elt))
2380 { 2373 {
2381 Lisp_Object indices[3];
2382 Lisp_Object args; 2374 Lisp_Object args;
2383 2375
2384 args = Fcons (Fcons (Fcons (definition, noindirect), 2376 args = Fcons (Fcons (Fcons (definition, noindirect),