diff options
| author | Gerd Moellmann | 1999-08-25 01:04:57 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-08-25 01:04:57 +0000 |
| commit | 26228404554a2c330f6e757fa9c22b744c296d44 (patch) | |
| tree | eb9adf307be5ed74a5f3e0dbad1f4904e5904533 /src | |
| parent | 714dc26c775fcbc1686e5050a02203fc794af39a (diff) | |
| download | emacs-26228404554a2c330f6e757fa9c22b744c296d44.tar.gz emacs-26228404554a2c330f6e757fa9c22b744c296d44.zip | |
(PVEC_TYPE_MASK): Add the bit for hash tables.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 52d3db828ff..d5e4aadc9e1 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -244,7 +244,7 @@ enum pvec_type | |||
| 244 | PVEC_BOOL_VECTOR = 0x10000, | 244 | PVEC_BOOL_VECTOR = 0x10000, |
| 245 | PVEC_BUFFER = 0x20000, | 245 | PVEC_BUFFER = 0x20000, |
| 246 | PVEC_HASH_TABLE = 0x40000, | 246 | PVEC_HASH_TABLE = 0x40000, |
| 247 | PVEC_TYPE_MASK = 0x3fe00, | 247 | PVEC_TYPE_MASK = 0x7fe00, |
| 248 | PVEC_FLAG = PSEUDOVECTOR_FLAG | 248 | PVEC_FLAG = PSEUDOVECTOR_FLAG |
| 249 | }; | 249 | }; |
| 250 | 250 | ||