diff src/lisp.h @ 10496:7ffec1b5c86c

(union Lisp_Misc): Make the `type' field just 16 bits, to match the substructures.
author Karl Heuer <kwzh@gnu.org>
date Fri, 20 Jan 1995 22:02:53 +0000
parents d5a769d08f88
children c57d8bad186b
line wrap: on
line diff
--- a/src/lisp.h	Fri Jan 20 20:12:25 1995 +0000
+++ b/src/lisp.h	Fri Jan 20 22:02:53 1995 +0000
@@ -677,7 +677,7 @@
 
 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;