diff options
| author | Karl Heuer | 1995-01-20 22:02:53 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-20 22:02:53 +0000 |
| commit | 53ea07e1a2cefe463103adf5c4f74dc9570aade1 (patch) | |
| tree | 4d0a0e14e718975389750dd9f979f1da4cc9d236 /src/lisp.h | |
| parent | 029c56f6adfe39a015740f2bae38ab7ec4747d3d (diff) | |
| download | emacs-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.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 | |||
| 677 | 677 | ||
| 678 | union Lisp_Misc | 678 | union 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; |