From: Richard M. Stallman Date: Tue, 20 Oct 1998 20:56:18 +0000 (+0000) Subject: (syms_of_syntax): Fix the setup of Qscan_error. X-Git-Tag: emacs-20.4~1446 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f3be100fc29c31d69f289d0cc986dcc2f6bbe08a;p=emacs.git (syms_of_syntax): Fix the setup of Qscan_error. --- 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"));