From f3be100fc29c31d69f289d0cc986dcc2f6bbe08a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 20 Oct 1998 20:56:18 +0000 Subject: [PATCH] (syms_of_syntax): Fix the setup of Qscan_error. --- src/syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syntax.c b/src/syntax.c index a2049e024bf..884ce5bf20a 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -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")); -- 2.39.2