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
commit9a51747bac45695aba40b3595c55237196b0fdcd (patch)
treec43b54d74f3bae9aa2bc64aaa860dd51924d8a27 /src/doc.c
parente43054262b4764a7a6440f0c3cf6a1402d10c77a (diff)
downloademacs-9a51747bac45695aba40b3595c55237196b0fdcd.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;