aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorKarl Heuer1995-01-20 22:02:53 +0000
committerKarl Heuer1995-01-20 22:02:53 +0000
commit53ea07e1a2cefe463103adf5c4f74dc9570aade1 (patch)
tree4d0a0e14e718975389750dd9f979f1da4cc9d236 /src/lisp.h
parent029c56f6adfe39a015740f2bae38ab7ec4747d3d (diff)
downloademacs-53ea07e1a2cefe463103adf5c4f74dc9570aade1.tar.gz
emacs-53ea07e1a2cefe463103adf5c4f74dc9570aade1.zip
(union Lisp_Misc): Make the `type' field just 16 bits, to match the
substructures.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
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
677 677
678union Lisp_Misc 678union Lisp_Misc
679 { 679 {
680 enum Lisp_Misc_Type type; 680 int type : 16;
681 struct Lisp_Free u_free; 681 struct Lisp_Free u_free;
682 struct Lisp_Marker u_marker; 682 struct Lisp_Marker u_marker;
683 struct Lisp_Intfwd u_intfwd; 683 struct Lisp_Intfwd u_intfwd;