diff options
| author | Eli Zaretskii | 2004-05-18 13:52:57 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2004-05-18 13:52:57 +0000 |
| commit | 4d0b9a0a45e14e5612a40c93063cab7842645557 (patch) | |
| tree | 422d011d2e407f733812c74d1d0cbfc9a0a72251 /src | |
| parent | 4d4ea14a2d05b86ddd9d8f8bd78b7764cb858e69 (diff) | |
| download | emacs-4d0b9a0a45e14e5612a40c93063cab7842645557.tar.gz emacs-4d0b9a0a45e14e5612a40c93063cab7842645557.zip | |
(DECL_ALIGN): Remove restriction on MS-DOS systems.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/lisp.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 382f2e8c6a1..7425754e042 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2004-05-18 Eli Zaretskii <eliz@gnu.org> | 1 | 2004-05-18 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * lisp.h (DECL_ALIGN): Remove restriction on MS-DOS systems. | ||
| 4 | |||
| 3 | * msdos.c (syms_of_msdos): Initialize dos-unsupported-char-glyph | 5 | * msdos.c (syms_of_msdos): Initialize dos-unsupported-char-glyph |
| 4 | with make_number. | 6 | with make_number. |
| 5 | (IT_write_glyphs): Extract glyph from dos-unsupported-char-glyph | 7 | (IT_write_glyphs): Extract glyph from dos-unsupported-char-glyph |
diff --git a/src/lisp.h b/src/lisp.h index fc22bc92c67..101ed73d3ef 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -305,12 +305,10 @@ enum pvec_type | |||
| 305 | variable VAR of type TYPE with the added requirement that it be | 305 | variable VAR of type TYPE with the added requirement that it be |
| 306 | TYPEBITS-aligned. */ | 306 | TYPEBITS-aligned. */ |
| 307 | #ifndef DECL_ALIGN | 307 | #ifndef DECL_ALIGN |
| 308 | # ifndef MSDOS /* MS-DOS doesn't currently support USE_LSB_TAG */ | ||
| 309 | /* What compiler directive should we use for non-gcc compilers? -stef */ | 308 | /* What compiler directive should we use for non-gcc compilers? -stef */ |
| 310 | # if defined (__GNUC__) | 309 | # if defined (__GNUC__) |
| 311 | # define DECL_ALIGN(type, var) \ | 310 | # define DECL_ALIGN(type, var) \ |
| 312 | type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var | 311 | type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var |
| 313 | # endif | ||
| 314 | # endif | 312 | # endif |
| 315 | #endif | 313 | #endif |
| 316 | 314 | ||