diff options
author | Oleh Krehel <ohwoeowho@gmail.com> | 2015-04-28 19:03:52 +0200 |
---|---|---|
committer | Oleh Krehel <ohwoeowho@gmail.com> | 2015-04-28 19:19:55 +0200 |
commit | 5da3780604802ba86625dac927f8f6a48b6df2cc (patch) | |
tree | 56482d8fc2b2cc6fb5f4154a3f87463f3a75e185 /src/lisp.h | |
parent | bed17055404bf43e17deb40897bee49db985de52 (diff) | |
download | emacs-scratch/remove-internal-field.tar.gz |
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/lisp.h')
-rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 40a3c9353d2..6d34ce3b052 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2896,7 +2896,7 @@ extern void defvar_kboard (struct Lisp_Kboard_Objfwd *, const char *, int); #define DEFVAR_KBOARD(lname, vname, doc) \ do { \ static struct Lisp_Kboard_Objfwd ko_fwd; \ - defvar_kboard (&ko_fwd, lname, offsetof (KBOARD, vname)); \ + defvar_kboard (&ko_fwd, lname, offsetof (KBOARD, vname ## _)); \ } while (false) /* Save and restore the instruction and environment pointers, |