]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp.h (toplevel) [!USE_STACK_LISP_OBJECTS]: Fix poorly nested
authorKen Brown <kbrown@cornell.edu>
Wed, 24 Sep 2014 13:42:42 +0000 (17:42 +0400)
committerDmitry Antipov <dmantipov@yandex.ru>
Wed, 24 Sep 2014 13:42:42 +0000 (17:42 +0400)
conditions (Bug#18544).

src/lisp.h

index 836557e492e2376feac06d53888a25f52008a72c..1fc18d5d737510a2ed4d0a568dc325f15b5cb2e5 100644 (file)
@@ -289,10 +289,10 @@ error !;
    describes an issues with 32-bit MS-Windows.  */
 #ifndef USE_STACK_LISP_OBJECTS
 # if defined (GNU_LINUX) && defined (__GNUC__) && !defined (__clang__)
-#   define USE_STACK_LISP_OBJECTS true
+#  define USE_STACK_LISP_OBJECTS true
+# else
+#  define USE_STACK_LISP_OBJECTS false
 # endif
-#else
-# define USE_STACK_LISP_OBJECTS false
 #endif
 
 #if defined HAVE_STRUCT_ATTRIBUTE_ALIGNED && USE_STACK_LISP_OBJECTS