From d642e4f9ee5f73140413399c76f38b07d03cec6d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 24 Aug 2002 03:17:18 +0000 Subject: [PATCH] (build_load_history): Use Fmember to see if a definition is already in the Vload_history element. (syms_of_lread): Doc fix. --- src/lread.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lread.c b/src/lread.c index 28a59941fab..f273ce60ec5 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1201,7 +1201,7 @@ build_load_history (stream, source) { 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 @@ when the corresponding call to `provide' is made. */); 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, -- 2.39.5