diff options
| author | Gerd Moellmann | 2000-03-27 12:50:13 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-27 12:50:13 +0000 |
| commit | f6cd05276dad073b9299368e33ba02825bdae048 (patch) | |
| tree | f9faf6cba098aab8dfdcc933fd75d5273d7e1e04 /src/syntax.c | |
| parent | ddebaaa9da7734fff3f9f4a847670a63a876ae71 (diff) | |
| download | emacs-f6cd05276dad073b9299368e33ba02825bdae048.tar.gz emacs-f6cd05276dad073b9299368e33ba02825bdae048.zip | |
Use new macro names
for handling per-buffer variables.
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 | ||