Mercurial > emacs
comparison src/lisp.h @ 11459:2402288b8410
Delete the #if that compares MARKBIT.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 15 Apr 1995 18:27:51 +0000 |
parents | 9fbaec64d072 |
children | b2ccbdb6336f |
comparison
equal
deleted
inserted
replaced
11458:43ce6ed860a6 | 11459:2402288b8410 |
---|---|
223 PVEC_FLAG = PSEUDOVECTOR_FLAG, | 223 PVEC_FLAG = PSEUDOVECTOR_FLAG, |
224 }; | 224 }; |
225 | 225 |
226 /* For convenience, we also store the number of elements in these bits. */ | 226 /* For convenience, we also store the number of elements in these bits. */ |
227 #define PSEUDOVECTOR_SIZE_MASK 0xff | 227 #define PSEUDOVECTOR_SIZE_MASK 0xff |
228 | |
229 #if ARRAY_MARK_FLAG == MARKBIT || PSEUDOVECTOR_FLAG == ARRAY_MARK_FLAG || PSEUDOVECTOR_FLAG == MARKBIT | |
230 you lose | |
231 #endif | |
232 | 228 |
233 #endif /* NO_UNION_TYPE */ | 229 #endif /* NO_UNION_TYPE */ |
234 | 230 |
235 /* These macros extract various sorts of values from a Lisp_Object. | 231 /* These macros extract various sorts of values from a Lisp_Object. |
236 For example, if tem is a Lisp_Object whose type is Lisp_Cons, | 232 For example, if tem is a Lisp_Object whose type is Lisp_Cons, |