From: Richard M. Stallman Date: Sat, 14 May 2005 13:57:33 +0000 (+0000) Subject: (symbol-file): Doc fix. X-Git-Tag: ttn-vms-21-2-B4~313 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e72e58336c289479f808ea19996e6f68de21032f;p=emacs.git (symbol-file): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d27b098c0ed..e9cc724b24b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -10,6 +10,8 @@ 2005-05-14 Richard M. Stallman + * subr.el (symbol-file): Doc fix. + * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function. (byte-compile-form): Call byte-compile-nogroup-warn. (byte-compile-warning-types): Doc fix. diff --git a/lisp/subr.el b/lisp/subr.el index d34730e6784..a894ebcb5ec 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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))))