aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-27 12:50:13 +0000
committerGerd Moellmann2000-03-27 12:50:13 +0000
commitf6cd05276dad073b9299368e33ba02825bdae048 (patch)
treef9faf6cba098aab8dfdcc933fd75d5273d7e1e04 /src/syntax.c
parentddebaaa9da7734fff3f9f4a847670a63a876ae71 (diff)
downloademacs-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.c4
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