Avoid an unnecessary call to intern
* src/doc.c (Fdocumentation): Prefer DEFSYM to using intern directly.
This commit is contained in:
parent
899055eef5
commit
97679d06e8
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ string is passed through `substitute-command-keys'. */)
|
|||
doc = module_function_documentation (XMODULE_FUNCTION (fun));
|
||||
#endif
|
||||
else
|
||||
doc = call1 (intern ("function-documentation"), fun);
|
||||
doc = call1 (Qfunction_documentation, fun);
|
||||
|
||||
/* If DOC is 0, it's typically because of a dumped file missing
|
||||
from the DOC file (bug in src/Makefile.in). */
|
||||
|
|
Loading…
Add table
Reference in a new issue