diff options
| author | Gerd Moellmann | 1999-11-24 14:01:54 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-24 14:01:54 +0000 |
| commit | cee971adccf14f34196c5e5df8a5b796309c22e6 (patch) | |
| tree | eb5d5d61d366bef8699ba82ef5238dfb33498b28 | |
| parent | 00da0e4ab4b1c4d20a89ebfce96526bd84b51da4 (diff) | |
| download | emacs-cee971adccf14f34196c5e5df8a5b796309c22e6.tar.gz emacs-cee971adccf14f34196c5e5df8a5b796309c22e6.zip | |
Fix typo in previous change.
| -rw-r--r-- | src/lisp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lisp.h b/src/lisp.h index a1f0b17e7ee..a9a5d21179a 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -260,13 +260,13 @@ enum pvec_type | |||
| 260 | PVEC_BOOL_VECTOR = 0x10000, | 260 | PVEC_BOOL_VECTOR = 0x10000, |
| 261 | PVEC_BUFFER = 0x20000, | 261 | PVEC_BUFFER = 0x20000, |
| 262 | PVEC_HASH_TABLE = 0x40000, | 262 | PVEC_HASH_TABLE = 0x40000, |
| 263 | PVEC_TYPE_MASK = 0x7fe00, | 263 | PVEC_TYPE_MASK = 0x7fe00 |
| 264 | 264 | ||
| 265 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available | 265 | #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to |
| 266 | to GDB. It doesn't work on OS Alpha. Moved to a variable in | 266 | GDB. It doesn't work on OS Alpha. Moved to a variable in |
| 267 | emacs.c */ | 267 | emacs.c. */ |
| 268 | PVEC_FLAG = PSEUDOVECTOR_FLAG | 268 | PVEC_FLAG = PSEUDOVECTOR_FLAG |
| 269 | #endi | 269 | #endif |
| 270 | }; | 270 | }; |
| 271 | 271 | ||
| 272 | /* For convenience, we also store the number of elements in these bits. */ | 272 | /* For convenience, we also store the number of elements in these bits. */ |