From: Karl Heuer Date: Fri, 20 Jan 1995 22:02:53 +0000 (+0000) Subject: (union Lisp_Misc): Make the `type' field just 16 bits, to match the X-Git-Tag: emacs-19.34~5362 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=53ea07e1a2cefe463103adf5c4f74dc9570aade1;p=emacs.git (union Lisp_Misc): Make the `type' field just 16 bits, to match the substructures. --- 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;