diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-01-07 00:22:49 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-01-07 00:22:49 +0000 |
commit | cb6cbf63426eca61c1cac035b514c40df35d4f30 (patch) | |
tree | b42600711b5c8dc04075355fda1232145a16199f /src/m/gec63.h | |
parent | c90ed54f344bd0a7d2a3a1bd43e4cd1ee4d20ac7 (diff) | |
download | emacs-cb6cbf63426eca61c1cac035b514c40df35d4f30.tar.gz |
(VALBITS): Adjust for new bit layout.
Diffstat (limited to 'src/m/gec63.h')
-rw-r--r-- | src/m/gec63.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/m/gec63.h b/src/m/gec63.h index a78f6c6793f..f8fb44af57f 100644 --- a/src/m/gec63.h +++ b/src/m/gec63.h @@ -58,8 +58,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define TERMINFO /* Define sizes of portions of a Lisp_Object. */ -#define VALBITS 22 -#define GCTYPEBITS 5 +#define VALBITS 24 #define VALAMASK (((1<<VALBITS) - 1)| 0xF0000000L) @@ -73,6 +72,5 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Move some garbage-collector flag bits to different bit positions. */ #define ARRAY_MARK_FLAG (1 << 27) -#define DONT_COPY_FLAG (1 << 26) #define NO_REMAP |