1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(symbol-file): Doc fix.

This commit is contained in:
Richard M. Stallman 2005-05-14 13:57:33 +00:00
parent 7404c0d4c3
commit e72e58336c
2 changed files with 4 additions and 1 deletions

View file

@ -983,7 +983,8 @@ It can also be nil, if the definition is not associated with any file.
If TYPE is nil, then any kind of definition is acceptable.
If TYPE is `defun' or `defvar', that specifies function
definition only or variable definition only."
definition only or variable definition only.
`defface' specifies a face definition only."
(if (and (or (null type) (eq type 'defun))
(symbolp symbol) (fboundp symbol)
(eq 'autoload (car-safe (symbol-function symbol))))