aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-12 16:57:29 +0000
committerRichard M. Stallman1993-06-12 16:57:29 +0000
commitf110a664783fa577f33e45d0f066e7203f6ea22b (patch)
tree98ee63f6c09eed8a1590f027c01050be6c680317 /src
parente09f935147cae904883d3c45e3cd39b947f2e409 (diff)
downloademacs-f110a664783fa577f33e45d0f066e7203f6ea22b.tar.gz
emacs-f110a664783fa577f33e45d0f066e7203f6ea22b.zip
(Fset_syntax_table): Add XFASTINT.
Diffstat (limited to 'src')
-rw-r--r--src/syntax.c3
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.")
173 table = check_syntax_table (table); 173 table = check_syntax_table (table);
174 current_buffer->syntax_table = table; 174 current_buffer->syntax_table = table;
175 /* Indicate that this buffer now has a specified syntax table. */ 175 /* Indicate that this buffer now has a specified syntax table. */
176 current_buffer->local_var_flags |= buffer_local_flags.syntax_table; 176 current_buffer->local_var_flags
177 |= XFASTINT (buffer_local_flags.syntax_table);
177 return table; 178 return table;
178} 179}
179 180