1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-04 08:47:11 +00:00

* lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.

This commit is contained in:
Tom Tromey 2011-02-16 08:20:08 -07:00
parent 4b4deea229
commit eb4916d71a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-02-16 Tom Tromey <tromey@redhat.com>
* lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.
2011-02-16 Tom Tromey <tromey@parfait>
* xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR.

View File

@ -1882,7 +1882,7 @@ extern void defvar_kboard (struct Lisp_Kboard_Objfwd *, const char *, int);
#define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) \
do { \
static struct Lisp_Objfwd o_fwd; \
defvar_lisp_nopro (&o_fwd, lname, &buffer_defaults.vname ## _); \
defvar_lisp_nopro (&o_fwd, lname, &BVAR (&buffer_defaults, vname)); \
} while (0)
#define DEFVAR_KBOARD(lname, vname, doc) \