diff options
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 8 |
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 | ||
| 2983 | int | 2983 | void |
| 2984 | describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow, | 2984 | describe_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 | ||
| 3097 | static int previous_description_column; | 3099 | static int previous_description_column; |