From: Ken Brown Date: Wed, 24 Sep 2014 13:42:42 +0000 (+0400) Subject: * lisp.h (toplevel) [!USE_STACK_LISP_OBJECTS]: Fix poorly nested X-Git-Tag: emacs-25.0.90~2635^2~679^2~235 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb617064458aed93abcfb06267128a8161c8cbb3;p=emacs.git * lisp.h (toplevel) [!USE_STACK_LISP_OBJECTS]: Fix poorly nested conditions (Bug#18544). --- diff --git a/src/lisp.h b/src/lisp.h index 836557e492e..1fc18d5d737 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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