Mercurial > emacs
diff src/category.c @ 28351:e3d57f7fba49
Use new macro names
for handling per-buffer variables.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Mon, 27 Mar 2000 12:50:13 +0000 |
| parents | 16ed41346de7 |
| children | 5cd01794225d |
line wrap: on
line diff
--- a/src/category.c Mon Mar 27 12:49:02 2000 +0000 +++ b/src/category.c Mon Mar 27 12:50:13 2000 +0000 @@ -276,8 +276,8 @@ table = check_category_table (table); current_buffer->category_table = table; /* Indicate that this buffer now has a specified category table. */ - idx = BUFFER_LOCAL_VAR_IDX (category_table); - SET_BUFFER_HAS_LOCAL_VALUE_P (current_buffer, idx, 1); + idx = PER_BUFFER_VAR_IDX (category_table); + SET_PER_BUFFER_VALUE_P (current_buffer, idx, 1); return table; }
