changeset 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 70bd087c47a9
children 6e00457b6f86
files src/lisp.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;