aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-12-27 15:58:59 +0000
committerRichard M. Stallman2004-12-27 15:58:59 +0000
commit1bc2cdb19dfd83589fdea8184ce51416d7252eba (patch)
treee846dfc026b98ca961377891c868a6314d16bb1e
parentc0b0f54b8c5246c6a17e1370c096da02b0d9e07e (diff)
downloademacs-1bc2cdb19dfd83589fdea8184ce51416d7252eba.tar.gz
emacs-1bc2cdb19dfd83589fdea8184ce51416d7252eba.zip
(syms_of_lread) <load-history>: Doc fix.
-rw-r--r--src/lread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c
index 08342618766..6d082203fe0 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3846,10 +3846,10 @@ when the corresponding call to `provide' is made. */);
3846Each alist element is a list that starts with a file name, 3846Each alist element is a list that starts with a file name,
3847except for one element (optional) that starts with nil and describes 3847except for one element (optional) that starts with nil and describes
3848definitions evaluated from buffers not visiting files. 3848definitions evaluated from buffers not visiting files.
3849The remaining elements of each list are symbols defined as functions, 3849The remaining elements of each list are symbols defined as variables
3850and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)', 3850and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)',
3851`(defvar . VARIABLE), `(autoload . SYMBOL)', and `(t . SYMBOL)'. 3851`(defun . FUNCTION)', `(autoload . SYMBOL)', and `(t . SYMBOL)'.
3852An element `(t . SYMBOL)' precedes an entry that is just SYMBOL, 3852An element `(t . SYMBOL)' precedes an entry `(defun . FUNCTION)',
3853and means that SYMBOL was an autoload before this file redefined it 3853and means that SYMBOL was an autoload before this file redefined it
3854as a function. */); 3854as a function. */);
3855 Vload_history = Qnil; 3855 Vload_history = Qnil;