]> 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 17:43:18 +0000 (12:43 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 27 Nov 2017 17:43:18 +0000 (12:43 -0500)
src/lread.c

index 17463f4ef4e40451d1a2bab3f9b1bb5181d7dbcd..a80808760316ab81d1924ebbdf7e919c3fdb8559 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.