diff options
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index a80d39765e0..036f1b13330 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -422,7 +422,11 @@ enum pvec_type PVEC_SUB_CHAR_TABLE = 0x100000, PVEC_FONT = 0x200000, PVEC_OTHER = 0x400000, - PVEC_TYPE_MASK = 0x7ffe00 +#ifdef HAVE_XWIDGETS + PVEC_XWIDGET = 0x800000, + PVEC_XWIDGET_VIEW = 0x1000000, +#endif + PVEC_TYPE_MASK = 0x3fffe00 #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to GDB. It doesn't work on OS Alpha. Moved to a variable in |