diff options
| author | Dmitry Antipov | 2012-10-10 19:31:21 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-10-10 19:31:21 +0400 |
| commit | 6aea75280281ab89266e7835655f2a551efd81b2 (patch) | |
| tree | 98fa101550e426454736be86a19c1233e3fd68e4 /src/alloc.c | |
| parent | 5f3f57be388eba88944a9e881afcbcacc100a8ae (diff) | |
| download | emacs-6aea75280281ab89266e7835655f2a551efd81b2.tar.gz emacs-6aea75280281ab89266e7835655f2a551efd81b2.zip | |
* alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
* lisp.h (enum pvec_type): Adjust comments and omit explicit
initializer for PVEC_NORMAL_VECTOR.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 0cbdef84c4a..95be8db1614 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -5689,7 +5689,7 @@ mark_object (Lisp_Object arg) | |||
| 5689 | pvectype = ((ptr->header.size & PVEC_TYPE_MASK) | 5689 | pvectype = ((ptr->header.size & PVEC_TYPE_MASK) |
| 5690 | >> PSEUDOVECTOR_SIZE_BITS); | 5690 | >> PSEUDOVECTOR_SIZE_BITS); |
| 5691 | else | 5691 | else |
| 5692 | pvectype = 0; | 5692 | pvectype = PVEC_NORMAL_VECTOR; |
| 5693 | 5693 | ||
| 5694 | if (pvectype != PVEC_SUBR && pvectype != PVEC_BUFFER) | 5694 | if (pvectype != PVEC_SUBR && pvectype != PVEC_BUFFER) |
| 5695 | CHECK_LIVE (live_vector_p); | 5695 | CHECK_LIVE (live_vector_p); |