aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-06-12 16:57:29 +0000
committerRichard M. Stallman <[email protected]>1993-06-12 16:57:29 +0000
commitf110a664783fa577f33e45d0f066e7203f6ea22b (patch)
tree98ee63f6c09eed8a1590f027c01050be6c680317 /src/syntax.c
parente09f935147cae904883d3c45e3cd39b947f2e409 (diff)
(Fset_syntax_table): Add XFASTINT.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 4386ea2db0..e11c5d1c34 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;
}