From 53ea07e1a2cefe463103adf5c4f74dc9570aade1 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 20 Jan 1995 22:02:53 +0000 Subject: [PATCH] (union Lisp_Misc): Make the `type' field just 16 bits, to match the substructures. --- src/lisp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lisp.h b/src/lisp.h index f2ff2680fe1..937e5315083 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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; -- 2.39.5