aboutsummaryrefslogtreecommitdiffstats
path: root/src/category.c
diff options
context:
space:
mode:
authorOleh Krehel2015-04-28 19:03:52 +0200
committerOleh Krehel2015-04-28 19:19:55 +0200
commit5da3780604802ba86625dac927f8f6a48b6df2cc (patch)
tree56482d8fc2b2cc6fb5f4154a3f87463f3a75e185 /src/category.c
parentbed17055404bf43e17deb40897bee49db985de52 (diff)
downloademacs-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/category.c')
-rw-r--r--src/category.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/category.c b/src/category.c
index 1bf9366c6d6..ab90f5ff093 100644
--- a/src/category.c
+++ b/src/category.c
@@ -41,7 +41,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
41static void 41static void
42bset_category_table (struct buffer *b, Lisp_Object val) 42bset_category_table (struct buffer *b, Lisp_Object val)
43{ 43{
44 b->category_table = val; 44 b->category_table_ = val;
45} 45}
46 46
47/* The version number of the latest category table. Each category 47/* The version number of the latest category table. Each category