diff options
Diffstat (limited to 'src')
| -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.") | |||
| 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 | ||