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, 5 insertions, 3 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 9f82175edc0..73b62f9d4bb 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2978,9 +2978,9 @@ You type Translation\n\
2978 If MENTION_SHADOW is nonzero, then when something is shadowed by SHADOW, 2978 If MENTION_SHADOW is nonzero, then when something is shadowed by SHADOW,
2979 don't omit it; instead, mention it but say it is shadowed. 2979 don't omit it; instead, mention it but say it is shadowed.
2980 2980
2981 Return whether something was inserted or not. */ 2981 Any inserted text ends in two newlines (used by `help-make-xrefs'). */
2982 2982
2983int 2983void
2984describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow, 2984describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow,
2985 Lisp_Object prefix, const char *title, int nomenu, int transl, 2985 Lisp_Object prefix, const char *title, int nomenu, int transl,
2986 int always_title, int mention_shadow) 2986 int always_title, int mention_shadow)
@@ -3090,8 +3090,10 @@ key binding\n\
3090 skip: ; 3090 skip: ;
3091 } 3091 }
3092 3092
3093 if (something)
3094 insert_string ("\n");
3095
3093 UNGCPRO; 3096 UNGCPRO;
3094 return something;
3095} 3097}
3096 3098
3097static int previous_description_column; 3099static int previous_description_column;