]> git.eshelyaron.com Git - emacs.git/commitdiff
(symbol-file): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sat, 14 May 2005 13:57:33 +0000 (13:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 14 May 2005 13:57:33 +0000 (13:57 +0000)
lisp/ChangeLog
lisp/subr.el

index d27b098c0ed1111e4f9af3f77dd14d0db5a8edd5..e9cc724b24b7bb892c5a2232b2d7398caef3960a 100644 (file)
@@ -10,6 +10,8 @@
 
 2005-05-14  Richard M. Stallman  <rms@gnu.org>
 
+       * 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.
index d34730e67849d8398f3d790563e139f4b604e3b4..a894ebcb5eca875d416989f92b274a3e8c88b4e5 100644 (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))))