diff options
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); | |||
| 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, |