summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2007-04-01 22:10:39 +0000
committerChong Yidong <cyd@stupidchicken.com>2007-04-01 22:10:39 +0000
commit8eedd200f03afc4ca330f8520fdb14be00635382 (patch)
tree5516473ffde75476a2801f66d2c9fe7e2be88d60
parentf808ad2db26803e1083e999a69afee424f6f0650 (diff)
downloademacs-8eedd200f03afc4ca330f8520fdb14be00635382.tar.gz
(Remapping Commands): Document new arg to command-remapping.
-rw-r--r--lispref/keymaps.texi6
1 files changed, 5 insertions, 1 deletions
diff --git a/lispref/keymaps.texi b/lispref/keymaps.texi
index 344ffa9a2da..684b3f7dd21 100644
--- a/lispref/keymaps.texi
+++ b/lispref/keymaps.texi
@@ -1489,13 +1489,17 @@ does not have the effect of remapping @code{kill-line} into
if an ordinary binding specifies @code{my-kill-line}, this keymap will
remap it to @code{my-other-kill-line}.
-@defun command-remapping command &optional position
+@defun command-remapping command &optional position keymaps
This function returns the remapping for @var{command} (a symbol),
given the current active keymaps. If @var{command} is not remapped
(which is the usual situation), or not a symbol, the function returns
@code{nil}. @code{position} can optionally specify a buffer position
or an event position to determine the keymaps to use, as in
@code{key-binding}.
+
+If the optional argument @code{keymaps} is non-@code{nil}, it
+specifies a list of keymaps to search in. This argument is ignored if
+@code{position} is non-@code{nil}.
@end defun
@node Translation Keymaps