aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-11-29 16:39:38 +0000
committerRichard M. Stallman1998-11-29 16:39:38 +0000
commit5106ed5f9ceead3f4e035c6a1d495e16469ddbad (patch)
treeeda5e847de77213b142c4c65b45722b66046e648
parentabf16d5ee927e3efb2d777f8246cc61121a85121 (diff)
downloademacs-5106ed5f9ceead3f4e035c6a1d495e16469ddbad.tar.gz
emacs-5106ed5f9ceead3f4e035c6a1d495e16469ddbad.zip
(symbol-file): Doc fix.
-rw-r--r--lisp/loadhist.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/loadhist.el b/lisp/loadhist.el
index 2e91f24b55f..ffa279d6d27 100644
--- a/lisp/loadhist.el
+++ b/lisp/loadhist.el
@@ -38,7 +38,10 @@ which is cleared out before dumping to make Emacs smaller.")
38 38
39(defun symbol-file (sym) 39(defun symbol-file (sym)
40 "Return the input source from which SYM was loaded. 40 "Return the input source from which SYM was loaded.
41This is a file name, or nil if the source was a buffer with no associated file." 41The value is normally a string that was passed to `load':
42either an absolute file name, or a library name
43\(with no directory name and no `.el' or `.elc' at the end).
44It can also be nil, if the definition is not associated with any file."
42 (unless load-history-loaded 45 (unless load-history-loaded
43 (load (expand-file-name 46 (load (expand-file-name
44 ;; fns-XX.YY.ZZ.el does not work on DOS filesystem. 47 ;; fns-XX.YY.ZZ.el does not work on DOS filesystem.