From: Juanma Barranquero Date: Sat, 3 Feb 2007 16:58:44 +0000 (+0000) Subject: (syms_of_lread) : Doc fix. X-Git-Tag: emacs-pretest-22.0.94~431 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=191c4353db57fd1f5cdc74a8ea3e2555b65e3ac8;p=emacs.git (syms_of_lread) : Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 602f23014a7..3b88928bd58 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-02-03 Juanma Barranquero + + * lread.c (syms_of_lread) : Doc fix. + 2007-01-29 Andreas Seltenreich (tiny change) * xterm.c [!USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_expose): diff --git a/src/lread.c b/src/lread.c index 86b48a56396..8fc1335698f 100644 --- a/src/lread.c +++ b/src/lread.c @@ -4087,10 +4087,10 @@ contain symbolic links) of the loaded file. The remaining elements of each list are symbols defined as variables and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)', -`(defun . FUNCTION)', `(autoload . SYMBOL)', and `(t . SYMBOL)'. -An element `(t . SYMBOL)' precedes an entry `(defun . FUNCTION)', -and means that SYMBOL was an autoload before this file redefined it -as a function. +`(defun . FUNCTION)', `(autoload . SYMBOL)', `(defface . SYMBOL)' +and `(t . SYMBOL)'. An element `(t . SYMBOL)' precedes an entry +`(defun . FUNCTION)', and means that SYMBOL was an autoload before +this file redefined it as a function. During preloading, the file name recorded is relative to the main Lisp directory. These file names are converted to absolute at startup. */);