Mercurial > emacs
diff src/syntax.c @ 23503:ce7900230b17
(syms_of_syntax): Fix the setup of Qscan_error.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 20 Oct 1998 20:56:18 +0000 |
| parents | 529689c4a32c |
| children | b69751ec40fe |
line wrap: on
line diff
--- a/src/syntax.c Tue Oct 20 19:38:09 1998 +0000 +++ b/src/syntax.c Tue Oct 20 20:56:18 1998 +0000 @@ -2795,7 +2795,7 @@ 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"));
