]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/lread.c (syms_of_lread): Fix thinko in commit b1573a97e17b5
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 27 Nov 2017 18:53:23 +0000 (13:53 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 27 Nov 2017 18:53:23 +0000 (13:53 -0500)
src/lread.c

index b056f4aaf38e744938ce7a2e6174e73df56bdb86..597ff56c8f55eb814557c3d97464c99a2164ecc6 100644 (file)
@@ -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.