]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.
authorTom Tromey <tromey@redhat.com>
Wed, 16 Feb 2011 15:20:08 +0000 (08:20 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 16 Feb 2011 15:20:08 +0000 (08:20 -0700)
src/ChangeLog
src/lisp.h

index 58f2d9b0c6e5fe259d3d0e771b4ea92fe8d2f996..1f4e23b75047659f5360b9b7db9c791d8eb852b8 100644 (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.
index bd1595bce0bd3179b5d020be5698a3d2081f5ca6..b82f1b2f72220fda58b6159e8863ca5a236fd32d 100644 (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)                       \