diff options
| author | Richard M. Stallman | 1998-10-20 20:56:18 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-10-20 20:56:18 +0000 |
| commit | f3be100fc29c31d69f289d0cc986dcc2f6bbe08a (patch) | |
| tree | 02dbd2bd571c38c30af8ff4268206ed1641d8bd5 | |
| parent | 9e265777d9c980f698a510239a67f2a314901c85 (diff) | |
| download | emacs-f3be100fc29c31d69f289d0cc986dcc2f6bbe08a.tar.gz emacs-f3be100fc29c31d69f289d0cc986dcc2f6bbe08a.zip | |
(syms_of_syntax): Fix the setup of Qscan_error.
| -rw-r--r-- | src/syntax.c | 2 |
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 | ||