diff options
| author | Oleh Krehel | 2015-04-28 19:03:52 +0200 |
|---|---|---|
| committer | Oleh Krehel | 2015-04-28 19:19:55 +0200 |
| commit | 5da3780604802ba86625dac927f8f6a48b6df2cc (patch) | |
| tree | 56482d8fc2b2cc6fb5f4154a3f87463f3a75e185 /src/syntax.c | |
| parent | bed17055404bf43e17deb40897bee49db985de52 (diff) | |
| download | emacs-scratch/remove-internal-field.tar.gz emacs-scratch/remove-internal-field.zip | |
Mark previous uses of INTERNAL_FIELD with a trailing underscorescratch/remove-internal-field
* src/.gdbinit: Revert the previous changes.
* 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 7833ee84479..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->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. */ |