diff options
| author | Oleh Krehel | 2015-04-23 12:36:22 +0200 |
|---|---|---|
| committer | Oleh Krehel | 2015-04-29 08:53:55 +0200 |
| commit | f66b16c3659ed3d58ce700190b22001db77d9bfd (patch) | |
| tree | 02fb1ccf25cfdf5de20094b8f598cc30fb6b1747 /src/syntax.c | |
| parent | 4594f894e60a50e3b5449d762b44a6c69b1bcae6 (diff) | |
| download | emacs-f66b16c3659ed3d58ce700190b22001db77d9bfd.tar.gz emacs-f66b16c3659ed3d58ce700190b22001db77d9bfd.zip | |
Remove the deprecated INTERNAL_FIELD macro by expanding it
* src/lisp.h (INTERNAL_FIELD): Remove.
(DEFVAR_KBOARD): Modify accordingly.
* alloc.c, buffer.c, buffer.h, category.c, keyboard.c, keyboard.h:
* syntax.c: Adjust users.
* src/buffer.c (compact_buffer): Use BVAR.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 2f821564294..1695815902a 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -186,7 +186,7 @@ static bool in_classes (int, Lisp_Object); | |||
| 186 | static void | 186 | static void |
| 187 | bset_syntax_table (struct buffer *b, Lisp_Object val) | 187 | bset_syntax_table (struct buffer *b, Lisp_Object val) |
| 188 | { | 188 | { |
| 189 | b->INTERNAL_FIELD (syntax_table) = val; | 189 | b->syntax_table_ = val; |
| 190 | } | 190 | } |
| 191 | 191 | ||
| 192 | /* Whether the syntax of the character C has the prefix flag set. */ | 192 | /* Whether the syntax of the character C has the prefix flag set. */ |