aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2006-03-11 15:25:03 +0000
committerRichard M. Stallman2006-03-11 15:25:03 +0000
commit7857982c9fdd085806380117936fec0f529894e8 (patch)
tree1b589c4534f328d5f29acf888bbfbe61c1242393 /src
parent395d3972b1ffbcbe1a81052163be27345d0ca8fb (diff)
downloademacs-7857982c9fdd085806380117936fec0f529894e8.tar.gz
emacs-7857982c9fdd085806380117936fec0f529894e8.zip
(describe_map): Shorten string to indicate shadowed binding.
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 03b36d525b6..d25bf150b88 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -3371,7 +3371,7 @@ describe_map (map, prefix, elt_describer, partial, shadow,
3371 if (vect[i].shadowed) 3371 if (vect[i].shadowed)
3372 { 3372 {
3373 SET_PT (PT - 1); 3373 SET_PT (PT - 1);
3374 insert_string (" (binding currently shadowed)"); 3374 insert_string (" (shadowed)");
3375 SET_PT (PT + 1); 3375 SET_PT (PT + 1);
3376 } 3376 }
3377 } 3377 }