1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 05:01:02 -08:00

(union Lisp_Misc): Make the `type' field just 16 bits, to match the

substructures.
This commit is contained in:
Karl Heuer 1995-01-20 22:02:53 +00:00
parent 029c56f6ad
commit 53ea07e1a2

View 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;