diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-01-20 22:02:53 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-01-20 22:02:53 +0000 |
commit | 53ea07e1a2cefe463103adf5c4f74dc9570aade1 (patch) | |
tree | 4d0a0e14e718975389750dd9f979f1da4cc9d236 /src/lisp.h | |
parent | 029c56f6adfe39a015740f2bae38ab7ec4747d3d (diff) | |
download | emacs-53ea07e1a2cefe463103adf5c4f74dc9570aade1.tar.gz |
(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.h | 2 |
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 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; |