]> git.eshelyaron.com Git - emacs.git/commitdiff
(union Lisp_Misc): Make the `type' field just 16 bits, to match the
authorKarl Heuer <kwzh@gnu.org>
Fri, 20 Jan 1995 22:02:53 +0000 (22:02 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 20 Jan 1995 22:02:53 +0000 (22:02 +0000)
substructures.

src/lisp.h

index f2ff2680fe1f2a909a04bb4500acc6a07a58d2c8..937e5315083b614eb77ad67c570470143efe13a2 100644 (file)
@@ -677,7 +677,7 @@ struct Lisp_Overlay
 
 union Lisp_Misc
   {
-    enum Lisp_Misc_Type type;
+    int type : 16;
     struct Lisp_Free u_free;
     struct Lisp_Marker u_marker;
     struct Lisp_Intfwd u_intfwd;