]> git.eshelyaron.com Git - emacs.git/commitdiff
(symbol-file): Fix doc-string.
authorMartin Rudalics <rudalics@gmx.at>
Sat, 6 Sep 2008 10:02:33 +0000 (10:02 +0000)
committerMartin Rudalics <rudalics@gmx.at>
Sat, 6 Sep 2008 10:02:33 +0000 (10:02 +0000)
lisp/ChangeLog
lisp/subr.el

index be3fdb6043685d5f69c09e196a4d6d9d8f18788d..970ee1086fcb521f2b3e10cf7c1780387928a63e 100644 (file)
@@ -1,3 +1,7 @@
+2008-09-06  Martin Rudalics  <rudalics@gmx.at>
+
+       * subr.el (symbol-file): Fix doc-string.
+
 2008-09-06  Glenn Morris  <rgm@gnu.org>
 
        * help-mode.el (help-xref-forward-stack): Doc fix.
index f8d26024c453151a1baa1f35331a8aa643affb5a..b7b6b2c38dee99cef2fad2f13d848de1336d2837 100644 (file)
@@ -1458,14 +1458,15 @@ If TOGGLE has a `:menu-tag', that is used for the menu item's label."
 ;;     (setq symbol-file-load-history-loaded t)))
 
 (defun symbol-file (symbol &optional type)
-  "Return the input source in which SYMBOL was defined.
-The value is an absolute file name.
-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.
-`defface' specifies a face definition only."
+  "Return the name of the file that defined SYMBOL.
+The value is normally an absolute file name.  It can also be nil,
+if the definition is not associated with any file.  If SYMBOL
+specifies an autoloaded function, the value can be a relative
+file name without extension.
+
+If TYPE is nil, then any kind of definition is acceptable.  If
+TYPE is `defun', `defvar', or `defface', that specifies function
+definition, variable definition, or face definition only."
   (if (and (or (null type) (eq type 'defun))
           (symbolp symbol) (fboundp symbol)
           (eq 'autoload (car-safe (symbol-function symbol))))