aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Brown2014-09-24 17:42:42 +0400
committerDmitry Antipov2014-09-24 17:42:42 +0400
commitcb617064458aed93abcfb06267128a8161c8cbb3 (patch)
tree36f76ca43829b3ec03a0644387b9f2fd18319227
parente9a86416c68240e1894d32e158cdf2abb5c4e477 (diff)
downloademacs-cb617064458aed93abcfb06267128a8161c8cbb3.tar.gz
emacs-cb617064458aed93abcfb06267128a8161c8cbb3.zip
* lisp.h (toplevel) [!USE_STACK_LISP_OBJECTS]: Fix poorly nested
conditions (Bug#18544).
-rw-r--r--src/lisp.h6
1 files changed, 3 insertions, 3 deletions
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 !;
289 describes an issues with 32-bit MS-Windows. */ 289 describes an issues with 32-bit MS-Windows. */
290#ifndef USE_STACK_LISP_OBJECTS 290#ifndef USE_STACK_LISP_OBJECTS
291# if defined (GNU_LINUX) && defined (__GNUC__) && !defined (__clang__) 291# if defined (GNU_LINUX) && defined (__GNUC__) && !defined (__clang__)
292# define USE_STACK_LISP_OBJECTS true 292# define USE_STACK_LISP_OBJECTS true
293# else
294# define USE_STACK_LISP_OBJECTS false
293# endif 295# endif
294#else
295# define USE_STACK_LISP_OBJECTS false
296#endif 296#endif
297 297
298#if defined HAVE_STRUCT_ATTRIBUTE_ALIGNED && USE_STACK_LISP_OBJECTS 298#if defined HAVE_STRUCT_ATTRIBUTE_ALIGNED && USE_STACK_LISP_OBJECTS