summaryrefslogtreecommitdiff
path: root/src/doc.c
diff options
context:
space:
mode:
authorDavid Kastrup <dak@gnu.org>2007-06-25 20:53:48 +0000
committerDavid Kastrup <dak@gnu.org>2007-06-25 20:53:48 +0000
commitc5c91f69008bdc533ffdbd491417bed275790834 (patch)
tree5e736796a50810bd74181758cec1f0fd9b9e2f9c /src/doc.c
parent6d67ea741ec15c33b29fb56dc7ead2e9c5d3ae70 (diff)
downloademacs-c5c91f69008bdc533ffdbd491417bed275790834.tar.gz
* keymaps.texi (Active Keymaps): Document new POSITION argument of
`current-active-maps'. * keymap.c (Fcurrent_active_maps): Add `position' argument. (Fwhere_is_internal): Adjust call to `current-active-maps' to cater for additional parameter. * keymap.h: Adjust number of parameters to `current-active-maps'. * doc.c (Fsubstitute_command_keys): Adjust call of `current-active-maps'.
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc.c b/src/doc.c
index 39fa6229183..c0d4961606b 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -883,7 +883,7 @@ a new string, without any text properties, is returned. */)
struct buffer *oldbuf;
int start_idx;
/* This is for computing the SHADOWS arg for describe_map_tree. */
- Lisp_Object active_maps = Fcurrent_active_maps (Qnil);
+ Lisp_Object active_maps = Fcurrent_active_maps (Qnil, Qnil);
Lisp_Object earlier_maps;
changed = 1;