diff options
| author | Andreas Schwab | 2004-04-26 21:26:17 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-04-26 21:26:17 +0000 |
| commit | 4435a68af69eccce12ff5702d9d7ea38846648d1 (patch) | |
| tree | 7e5f2154c4a53083f46bfe27addeafa7be35cca9 /src | |
| parent | ebb395551edd4bb9406f9219cdea943c35872f5d (diff) | |
| download | emacs-4435a68af69eccce12ff5702d9d7ea38846648d1.tar.gz emacs-4435a68af69eccce12ff5702d9d7ea38846648d1.zip | |
(BOOL_VECTOR_BITS_PER_CHAR): Define.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index ce5a5c5917e..50f063371a9 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -278,6 +278,10 @@ enum pvec_type | |||
| 278 | 278 | ||
| 279 | /* For convenience, we also store the number of elements in these bits. */ | 279 | /* For convenience, we also store the number of elements in these bits. */ |
| 280 | #define PSEUDOVECTOR_SIZE_MASK 0x1ff | 280 | #define PSEUDOVECTOR_SIZE_MASK 0x1ff |
| 281 | |||
| 282 | /* Number of bits to put in each character in the internal representation | ||
| 283 | of bool vectors. This should not vary across implementations. */ | ||
| 284 | #define BOOL_VECTOR_BITS_PER_CHAR 8 | ||
| 281 | 285 | ||
| 282 | /***** Select the tagging scheme. *****/ | 286 | /***** Select the tagging scheme. *****/ |
| 283 | 287 | ||