From: Stefan Monnier Date: Mon, 27 Nov 2017 18:53:23 +0000 (-0500) Subject: * src/lread.c (syms_of_lread): Fix thinko in commit b1573a97e17b5 X-Git-Tag: emacs-26.0.91~234 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=37f3a6b216f385b1aef5310bff0ea5abb24f7637;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 b056f4aaf38..597ff56c8f5 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.