comparison src/lread.c @ 48726:8e3eb5de7b47

(syms_of_lread) <load-history>: Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 07 Dec 2002 21:40:19 +0000
parents 8f11dde95c66
children f1010d7b4fd9
comparison
equal deleted inserted replaced
48725:279d729bd941 48726:8e3eb5de7b47
3773 Each alist element is a list that starts with a file name, 3773 Each alist element is a list that starts with a file name,
3774 except for one element (optional) that starts with nil and describes 3774 except for one element (optional) that starts with nil and describes
3775 definitions evaluated from buffers not visiting files. 3775 definitions evaluated from buffers not visiting files.
3776 The remaining elements of each list are symbols defined as functions, 3776 The remaining elements of each list are symbols defined as functions,
3777 and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)', 3777 and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)',
3778 `(defvar . VARIABLE), and `(autoload . SYMBOL)'. */); 3778 `(defvar . VARIABLE), `(autoload . SYMBOL)', and `(t . SYMBOL)'.
3779 An element `(t . SYMBOL)' precedes an entry that is just SYMBOL,
3780 and means that SYMBOL was an autoload before this file redefined it
3781 as a function. */);
3779 Vload_history = Qnil; 3782 Vload_history = Qnil;
3780 3783
3781 DEFVAR_LISP ("load-file-name", &Vload_file_name, 3784 DEFVAR_LISP ("load-file-name", &Vload_file_name,
3782 doc: /* Full name of file being loaded by `load'. */); 3785 doc: /* Full name of file being loaded by `load'. */);
3783 Vload_file_name = Qnil; 3786 Vload_file_name = Qnil;