From: Stefan Monnier Date: Mon, 27 Nov 2017 17:43:18 +0000 (-0500) Subject: * src/lread.c (syms_of_lread): Fix thinko in commit b1573a97e17b5. X-Git-Tag: emacs-27.0.90~6124 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e896320f0e0c50aa31712b7f1bda4c4a78ff0f82;p=emacs.git * src/lread.c (syms_of_lread): Fix thinko in commit b1573a97e17b5. --- diff --git a/src/lread.c b/src/lread.c index 17463f4ef4e..a8080876031 100644 --- a/src/lread.c +++ b/src/lread.c @@ -4769,7 +4769,7 @@ to find all the symbols in an obarray, use `mapatoms'. */); DEFVAR_LISP ("values", Vvalues, doc: /* List of values of all expressions which were read, evaluated and printed. Order is reverse chronological. */); - XSYMBOL (intern ("values"))->u.s.declared_special = true; + XSYMBOL (intern ("values"))->u.s.declared_special = false; DEFVAR_LISP ("standard-input", Vstandard_input, doc: /* Stream for read to get input from.