]> git.eshelyaron.com Git - emacs.git/commitdiff
(DECL_ALIGN) [MSDOS]: Don't define DECL_ALIGN to use
authorEli Zaretskii <eliz@gnu.org>
Sat, 15 May 2004 11:50:50 +0000 (11:50 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 15 May 2004 11:50:50 +0000 (11:50 +0000)
__attribute__((__aligned__)), so that USE_LSB_TAG would not become
defined for the MS-DOS build.

src/lisp.h

index 8a73d852c4b6d915dc8c6c2205e8c90d54e0bbf4..ee2170191473119f4684e6fdff56475714973111 100644 (file)
@@ -305,10 +305,12 @@ enum pvec_type
    variable VAR of type TYPE with the added requirement that it be
    TYPEBITS-aligned. */
 #ifndef DECL_ALIGN
+# ifndef MSDOS /* MS-DOS doesn't currently support USE_LSB_TAG */
 /* What compiler directive should we use for non-gcc compilers?  -stef  */
-# if defined (__GNUC__)
-#  define DECL_ALIGN(type, var) \
-    type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var
+#  if defined (__GNUC__)
+#   define DECL_ALIGN(type, var) \
+     type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var
+#  endif
 # endif
 #endif