aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/lread.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 602f23014a7..3b88928bd58 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12007-02-03 Juanma Barranquero <lekktu@gmail.com>
2
3 * lread.c (syms_of_lread) <load-history>: Doc fix.
4
12007-01-29 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> (tiny change) 52007-01-29 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> (tiny change)
2 6
3 * xterm.c [!USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_expose): 7 * 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.
4087 4087
4088The remaining elements of each list are symbols defined as variables 4088The remaining elements of each list are symbols defined as variables
4089and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)', 4089and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)',
4090`(defun . FUNCTION)', `(autoload . SYMBOL)', and `(t . SYMBOL)'. 4090`(defun . FUNCTION)', `(autoload . SYMBOL)', `(defface . SYMBOL)'
4091An element `(t . SYMBOL)' precedes an entry `(defun . FUNCTION)', 4091and `(t . SYMBOL)'. An element `(t . SYMBOL)' precedes an entry
4092and means that SYMBOL was an autoload before this file redefined it 4092`(defun . FUNCTION)', and means that SYMBOL was an autoload before
4093as a function. 4093this file redefined it as a function.
4094 4094
4095During preloading, the file name recorded is relative to the main Lisp 4095During preloading, the file name recorded is relative to the main Lisp
4096directory. These file names are converted to absolute at startup. */); 4096directory. These file names are converted to absolute at startup. */);