1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-13 16:38:14 +00: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"));