summaryrefslogtreecommitdiff
path: root/src/doc.c
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2006-02-10 00:00:31 +0000
committerKim F. Storm <storm@cua.dk>2006-02-10 00:00:31 +0000
commit166cebe525c28f6bb02e35cf187b886e2f67e141 (patch)
tree12ca27738a60587a9fdbfd06d26bfcf163227396 /src/doc.c
parent73f526986f25ad8efdfe31db9ef86484b8767d03 (diff)
downloademacs-166cebe525c28f6bb02e35cf187b886e2f67e141.tar.gz
* data.c (Findirect_function): Add NOERROR arg. All callers changed
to pass Qnil for NOERROR. * keymap.c (current_minor_maps_error): Remove. (current_minor_maps): Pass Qt for NOERROR to Findirect_function instead of using internal_condition_case_1+current_minor_maps_error.
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 5c4c8b45412..0e1042b95a5 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -386,7 +386,7 @@ string is passed through `substitute-command-keys'. */)
!NILP (tem)))
return Fdocumentation_property (function, Qfunction_documentation, raw);
- fun = Findirect_function (function);
+ fun = Findirect_function (function, Qnil);
if (SUBRP (fun))
{
if (XSUBR (fun)->doc == 0)