aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
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 b9247122ccd..17c55cfd2d6 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2841,8 +2841,8 @@ You type Translation\n\
2841 insert ("\n", 1); 2841 insert ("\n", 1);
2842 } 2842 }
2843 2843
2844 if (!NILP (current_kboard->Vkey_translation_map)) 2844 if (!NILP (current_kboard->Vlocal_key_translation_map))
2845 describe_map_tree (current_kboard->Vkey_translation_map, 0, Qnil, prefix, 2845 describe_map_tree (current_kboard->Vlocal_key_translation_map, 0, Qnil, prefix,
2846 "Key translations", nomenu, 1, 0, 0); 2846 "Key translations", nomenu, 1, 0, 0);
2847 2847
2848 2848
@@ -2931,8 +2931,8 @@ You type Translation\n\
2931 "\f\nGlobal Bindings", nomenu, 0, 1, 0); 2931 "\f\nGlobal Bindings", nomenu, 0, 1, 0);
2932 2932
2933 /* Print the function-key-map translations under this prefix. */ 2933 /* Print the function-key-map translations under this prefix. */
2934 if (!NILP (current_kboard->Vfunction_key_map)) 2934 if (!NILP (current_kboard->Vlocal_function_key_map))
2935 describe_map_tree (current_kboard->Vfunction_key_map, 0, Qnil, prefix, 2935 describe_map_tree (current_kboard->Vlocal_function_key_map, 0, Qnil, prefix,
2936 "\f\nFunction key map translations", nomenu, 1, 0, 0); 2936 "\f\nFunction key map translations", nomenu, 1, 0, 0);
2937 2937
2938 UNGCPRO; 2938 UNGCPRO;