]> code.delx.au - gnu-emacs/commitdiff
src/w32term.h (ALIGN_STACK): Fix a typo in last commit.
authorEli Zaretskii <eliz@gnu.org>
Thu, 25 Sep 2014 17:28:48 +0000 (20:28 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 25 Sep 2014 17:28:48 +0000 (20:28 +0300)
Fixes: debbugs:18559
src/w32term.h

index fcadca6a9af0dfe34267560cabb949f0e7f33504..f9025fd13ad854d4b863d4b86a0064b1f58b4643 100644 (file)
@@ -30,7 +30,7 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
    re-align the stack at function entry.  Further details about this
    can be found in http://www.peterstock.co.uk/games/mingw_sse/.  */
 #ifdef __GNUC__
-# if defined USE_STACK_LISP_OBJECTS && defined _W64    \
+# if defined USE_STACK_LISP_OBJECTS && !defined _W64   \
   && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5
 #  define ALIGN_STACK __attribute__((force_align_arg_pointer))
 # else