aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/doc.c b/src/doc.c
index 7bdb8c658b0..02db4dde072 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -502,10 +502,12 @@ aren't strings. */)
502/* Scanning the DOC files and placing docstring offsets into functions. */ 502/* Scanning the DOC files and placing docstring offsets into functions. */
503 503
504static void 504static void
505store_function_docstring (Lisp_Object fun, EMACS_INT offset) 505store_function_docstring (Lisp_Object obj, EMACS_INT offset)
506/* Use EMACS_INT because we get offset from pointer subtraction. */ 506/* Use EMACS_INT because we get offset from pointer subtraction. */
507{ 507{
508 fun = indirect_function (fun); 508 /* Don't use indirect_function here, or defaliases will apply their
509 docstrings to the base functions (Bug#2603). */
510 Lisp_Object fun = SYMBOLP (obj) ? XSYMBOL (obj)->function : obj;
509 511
510 /* The type determines where the docstring is stored. */ 512 /* The type determines where the docstring is stored. */
511 513