1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-11 10:20:33 -08:00

* lisp.h (toplevel) [!USE_STACK_LISP_OBJECTS]: Fix poorly nested

conditions (Bug#18544).
This commit is contained in:
Ken Brown 2014-09-24 17:42:42 +04:00 committed by Dmitry Antipov
parent e9a86416c6
commit cb61706445

View 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