diff options
| author | Vibhav Pant | 2020-08-21 14:04:35 +0530 |
|---|---|---|
| committer | Vibhav Pant | 2020-08-21 14:04:35 +0530 |
| commit | f0f8d7b82492e741950c363a03b886965c91b1b0 (patch) | |
| tree | 19b716830b1ebabc0d7d75949c4e6800c0f104ad /src/syntax.c | |
| parent | 9e64a087c4d167e7ec1c4e22bea3e6af53b563de (diff) | |
| parent | c818c29771d3cb51875643b2f6c894073e429dd2 (diff) | |
| download | emacs-feature/native-comp-macos-fixes.tar.gz emacs-feature/native-comp-macos-fixes.zip | |
Merge branch 'feature/native-comp' into feature/native-comp-macos-fixesfeature/native-comp-macos-fixes
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index a03202d386c..9f77ea5f9b0 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -3617,9 +3617,9 @@ init_syntax_once (void) | |||
| 3617 | DEFSYM (Qsyntax_table, "syntax-table"); | 3617 | DEFSYM (Qsyntax_table, "syntax-table"); |
| 3618 | 3618 | ||
| 3619 | /* Create objects which can be shared among syntax tables. */ | 3619 | /* Create objects which can be shared among syntax tables. */ |
| 3620 | Vsyntax_code_object = make_uninit_vector (Smax); | 3620 | Vsyntax_code_object = make_nil_vector (Smax); |
| 3621 | for (i = 0; i < Smax; i++) | 3621 | for (i = 0; i < Smax; i++) |
| 3622 | ASET (Vsyntax_code_object, i, Fcons (make_fixnum (i), Qnil)); | 3622 | ASET (Vsyntax_code_object, i, list1 (make_fixnum (i))); |
| 3623 | 3623 | ||
| 3624 | /* Now we are ready to set up this property, so we can | 3624 | /* Now we are ready to set up this property, so we can |
| 3625 | create syntax tables. */ | 3625 | create syntax tables. */ |