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 166ec4fa224..cc25d350d44 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -2962,7 +2962,7 @@ The optional argument MENUS, if non-nil, says to mention menu bindings. | |||
| 2962 | register Lisp_Object start1; | 2962 | register Lisp_Object start1; |
| 2963 | struct gcpro gcpro1; | 2963 | struct gcpro gcpro1; |
| 2964 | 2964 | ||
| 2965 | char *alternate_heading | 2965 | const char *alternate_heading |
| 2966 | = "\ | 2966 | = "\ |
| 2967 | Keyboard translations:\n\n\ | 2967 | Keyboard translations:\n\n\ |
| 2968 | You type Translation\n\ | 2968 | You type Translation\n\ |
| @@ -3134,13 +3134,13 @@ You type Translation\n\ | |||
| 3134 | 3134 | ||
| 3135 | void | 3135 | void |
| 3136 | describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow, | 3136 | describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow, |
| 3137 | Lisp_Object prefix, char *title, int nomenu, int transl, | 3137 | Lisp_Object prefix, const char *title, int nomenu, int transl, |
| 3138 | int always_title, int mention_shadow) | 3138 | int always_title, int mention_shadow) |
| 3139 | { | 3139 | { |
| 3140 | Lisp_Object maps, orig_maps, seen, sub_shadows; | 3140 | Lisp_Object maps, orig_maps, seen, sub_shadows; |
| 3141 | struct gcpro gcpro1, gcpro2, gcpro3; | 3141 | struct gcpro gcpro1, gcpro2, gcpro3; |
| 3142 | int something = 0; | 3142 | int something = 0; |
| 3143 | char *key_heading | 3143 | const char *key_heading |
| 3144 | = "\ | 3144 | = "\ |
| 3145 | key binding\n\ | 3145 | key binding\n\ |
| 3146 | --- -------\n"; | 3146 | --- -------\n"; |