aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorChong Yidong2012-05-30 22:08:58 +0800
committerChong Yidong2012-05-30 22:08:58 +0800
commit353c87f6ff3c0834e521563f8eefa75c0b10e388 (patch)
tree12b43f4dabd1f54c0c3c08fee94b45556e3e0c32 /src/keymap.c
parent0652336413775df89b051f604278c4e9e5ce2784 (diff)
downloademacs-353c87f6ff3c0834e521563f8eefa75c0b10e388.tar.gz
emacs-353c87f6ff3c0834e521563f8eefa75c0b10e388.zip
* keymap.c (describe_map_tree): Revert 2011-07-07 change.
* doc.c (Fsubstitute_command_keys): Doc fix. Fixes: debbugs:1169
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;