diff options
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 befa704f5d5..c2711b90ef1 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -725,8 +725,8 @@ One argument, a syntax table.") | |||
| 725 | check_syntax_table (table); | 725 | check_syntax_table (table); |
| 726 | current_buffer->syntax_table = table; | 726 | current_buffer->syntax_table = table; |
| 727 | /* Indicate that this buffer now has a specified syntax table. */ | 727 | /* Indicate that this buffer now has a specified syntax table. */ |
| 728 | idx = BUFFER_LOCAL_VAR_IDX (syntax_table); | 728 | idx = PER_BUFFER_VAR_IDX (syntax_table); |
| 729 | SET_BUFFER_HAS_LOCAL_VALUE_P (current_buffer, idx, 1); | 729 | SET_PER_BUFFER_VALUE_P (current_buffer, idx, 1); |
| 730 | return table; | 730 | return table; |
| 731 | } | 731 | } |
| 732 | 732 | ||