diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lisp.h b/src/lisp.h index 2638f8c6a79..e038f97e13f 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -318,10 +318,6 @@ enum pvec_type | |||
| 318 | #define XTYPE(a) ((enum Lisp_Type) (((EMACS_UINT) (a)) >> VALBITS)) | 318 | #define XTYPE(a) ((enum Lisp_Type) (((EMACS_UINT) (a)) >> VALBITS)) |
| 319 | #endif | 319 | #endif |
| 320 | 320 | ||
| 321 | #ifndef XSETTYPE | ||
| 322 | #define XSETTYPE(a, b) ((a) = XUINT (a) | ((EMACS_INT)(b) << VALBITS)) | ||
| 323 | #endif | ||
| 324 | |||
| 325 | /* For integers known to be positive, XFASTINT provides fast retrieval | 321 | /* For integers known to be positive, XFASTINT provides fast retrieval |
| 326 | and XSETFASTINT provides fast storage. This takes advantage of the | 322 | and XSETFASTINT provides fast storage. This takes advantage of the |
| 327 | fact that Lisp_Int is 0. | 323 | fact that Lisp_Int is 0. |