aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2006-04-18 20:58:59 +0000
committerRichard M. Stallman2006-04-18 20:58:59 +0000
commit5615dcc03b721ea3a4d619fe8c6f9a4232193c3d (patch)
tree9a05055bfcef0883b264e20c60dbb0bc84e704a7 /src
parentd06d657cc711ede2aa2c729db30f5fbabf2ad4ec (diff)
downloademacs-5615dcc03b721ea3a4d619fe8c6f9a4232193c3d.tar.gz
emacs-5615dcc03b721ea3a4d619fe8c6f9a4232193c3d.zip
(describe_map): Make "shadowed" warning more verbose.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index fa33fc34bc0..2a4fa196067 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -3372,7 +3372,7 @@ describe_map (map, prefix, elt_describer, partial, shadow,
3372 if (vect[i].shadowed) 3372 if (vect[i].shadowed)
3373 { 3373 {
3374 SET_PT (PT - 1); 3374 SET_PT (PT - 1);
3375 insert_string (" (shadowed)"); 3375 insert_string ("\n (that binding is currently shadowed by another mode)");
3376 SET_PT (PT + 1); 3376 SET_PT (PT + 1);
3377 } 3377 }
3378 } 3378 }