aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-10-20 20:56:18 +0000
committerRichard M. Stallman1998-10-20 20:56:18 +0000
commitf3be100fc29c31d69f289d0cc986dcc2f6bbe08a (patch)
tree02dbd2bd571c38c30af8ff4268206ed1641d8bd5
parent9e265777d9c980f698a510239a67f2a314901c85 (diff)
downloademacs-f3be100fc29c31d69f289d0cc986dcc2f6bbe08a.tar.gz
emacs-f3be100fc29c31d69f289d0cc986dcc2f6bbe08a.zip
(syms_of_syntax): Fix the setup of Qscan_error.
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
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 ()
2795 Qscan_error = intern ("scan-error"); 2795 Qscan_error = intern ("scan-error");
2796 staticpro (&Qscan_error); 2796 staticpro (&Qscan_error);
2797 Fput (Qscan_error, Qerror_conditions, 2797 Fput (Qscan_error, Qerror_conditions,
2798 Fcons (Qerror, Qnil)); 2798 Fcons (Qscan_error, Fcons (Qerror, Qnil)));
2799 Fput (Qscan_error, Qerror_message, 2799 Fput (Qscan_error, Qerror_message,
2800 build_string ("Scan error")); 2800 build_string ("Scan error"));
2801 2801