aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
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/lisp.h
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/lisp.h')
-rw-r--r--src/lisp.h2
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);
2896#define DEFVAR_KBOARD(lname, vname, doc) \ 2896#define DEFVAR_KBOARD(lname, vname, doc) \
2897 do { \ 2897 do { \
2898 static struct Lisp_Kboard_Objfwd ko_fwd; \ 2898 static struct Lisp_Kboard_Objfwd ko_fwd; \
2899 defvar_kboard (&ko_fwd, lname, offsetof (KBOARD, vname)); \ 2899 defvar_kboard (&ko_fwd, lname, offsetof (KBOARD, vname ## _)); \
2900 } while (false) 2900 } while (false)
2901 2901
2902/* Save and restore the instruction and environment pointers, 2902/* Save and restore the instruction and environment pointers,