[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: (elisp)Object Internals
From: |
Stefan Monnier |
Subject: |
Re: (elisp)Object Internals |
Date: |
21 Dec 2003 19:21:01 -0500 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 |
> I believe I understand now that the quote from `(elisp)Object
> Internals' should be changed to:
> Depending on the operating system and type of machine for which
> you compile Emacs, twenty-nine bits are used to address the
> object, and the remaining three bits are used for a GC mark bit and
> the tag that identifies the object's type.
Actually, the recent change was to remove the mark bit, so something like
the following would be better:
Depending on the operating system and type of machine for which
you compile Emacs, twenty-nine bits are used to address the
object, and the remaining three bits are used for
the tag that identifies the object's type.
-- Stefan