diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-06-12 16:57:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-06-12 16:57:29 +0000 |
| commit | f110a664783fa577f33e45d0f066e7203f6ea22b (patch) | |
| tree | 98ee63f6c09eed8a1590f027c01050be6c680317 /src/syntax.c | |
| parent | e09f935147cae904883d3c45e3cd39b947f2e409 (diff) | |
| download | emacs-f110a664783fa577f33e45d0f066e7203f6ea22b.tar.gz | |
(Fset_syntax_table): Add XFASTINT.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4386ea2db0c..e11c5d1c341 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -173,7 +173,8 @@ One argument, a syntax table.") table = check_syntax_table (table); current_buffer->syntax_table = table; /* Indicate that this buffer now has a specified syntax table. */ - current_buffer->local_var_flags |= buffer_local_flags.syntax_table; + current_buffer->local_var_flags + |= XFASTINT (buffer_local_flags.syntax_table); return table; } |
