Mercurial > emacs
changeset 47021:3bd4234e0844
(build_load_history): Use Fmember to see if a definition
is already in the Vload_history element.
(syms_of_lread): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 24 Aug 2002 03:17:18 +0000 |
parents | de9a20871faa |
children | d2259df6cb09 |
files | src/lread.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lread.c Sat Aug 24 03:16:03 2002 +0000 +++ b/src/lread.c Sat Aug 24 03:17:18 2002 +0000 @@ -1201,7 +1201,7 @@ { newelt = XCAR (tem2); - if (NILP (Fmemq (newelt, tem))) + if (NILP (Fmember (newelt, tem))) Fsetcar (tail, Fcons (XCAR (tem), Fcons (newelt, XCDR (tem)))); @@ -3760,9 +3760,9 @@ Each alist element is a list that starts with a file name, except for one element (optional) that starts with nil and describes definitions evaluated from buffers not visiting files. -The remaining elements of each list are symbols defined as functions -or variables, and cons cells `(provide . FEATURE)', `(require . FEATURE)', -and `(autoload . SYMBOL)'. */); +The remaining elements of each list are symbols defined as functions, +and cons cells of the form `(provide . FEATURE)', `(require . FEATURE)', +`(defvar . VARIABLE), and `(autoload . SYMBOL)'. */); Vload_history = Qnil; DEFVAR_LISP ("load-file-name", &Vload_file_name,