diff options
| author | Joakim Verona | 2011-07-18 17:16:34 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-07-18 17:16:34 +0200 |
| commit | cd1f21dd9e794a14aa6907296c6ee95cc5f693a1 (patch) | |
| tree | caa4bd621b770f0672d919da5023f84018ea7478 /src/lisp.h | |
| parent | f7679969e190ec203eb46e0937185900b72f11c7 (diff) | |
| download | emacs-cd1f21dd9e794a14aa6907296c6ee95cc5f693a1.tar.gz emacs-cd1f21dd9e794a14aa6907296c6ee95cc5f693a1.zip | |
cleanup xv init test, and introduce PVEC_XWIDGET
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 762d34abb9c..30afc6e484b 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -388,7 +388,9 @@ enum pvec_type | |||
| 388 | PVEC_SUB_CHAR_TABLE = 0x100000, | 388 | PVEC_SUB_CHAR_TABLE = 0x100000, |
| 389 | PVEC_FONT = 0x200000, | 389 | PVEC_FONT = 0x200000, |
| 390 | PVEC_OTHER = 0x400000, | 390 | PVEC_OTHER = 0x400000, |
| 391 | PVEC_TYPE_MASK = 0x7ffe00 | 391 | PVEC_XWIDGET = 0x800000, |
| 392 | PVEC_XWIDGET_VIEW = 0x1000000, | ||
| 393 | PVEC_TYPE_MASK = 0x3fffe00 | ||
| 392 | 394 | ||
| 393 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to | 395 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to |
| 394 | GDB. It doesn't work on OS Alpha. Moved to a variable in | 396 | GDB. It doesn't work on OS Alpha. Moved to a variable in |