1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-16 08:10:43 -08:00

(syms_of_syntax): Fix the setup of Qscan_error.

This commit is contained in:
Richard M. Stallman 1998-10-20 20:56:18 +00:00
parent 9e265777d9
commit f3be100fc2

View file

@ -2795,7 +2795,7 @@ syms_of_syntax ()
Qscan_error = intern ("scan-error");
staticpro (&Qscan_error);
Fput (Qscan_error, Qerror_conditions,
Fcons (Qerror, Qnil));
Fcons (Qscan_error, Fcons (Qerror, Qnil)));
Fput (Qscan_error, Qerror_message,
build_string ("Scan error"));