1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

* src/lread.c (syms_of_lread): Fix thinko in commit b1573a97e1

This commit is contained in:
Stefan Monnier 2017-11-27 13:53:23 -05:00
parent 02d114d6b8
commit 37f3a6b216

View 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.