Avoid an unnecessary call to intern
* src/doc.c (Fdocumentation): Prefer DEFSYM to using intern directly.
This commit is contained in:
@@ -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). */
|
||||
|
||||
Reference in New Issue
Block a user