aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h4
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