aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2014-09-25 20:28:48 +0300
committerEli Zaretskii2014-09-25 20:28:48 +0300
commit39234ddb3e95c7ec704b104220cdf4bb50768907 (patch)
treebbf414a7fcfaa506f41fd6125dc07a29bac2163d /src
parent685460246c7474d2654c50df89e8c882dd19c383 (diff)
downloademacs-39234ddb3e95c7ec704b104220cdf4bb50768907.tar.gz
emacs-39234ddb3e95c7ec704b104220cdf4bb50768907.zip
src/w32term.h (ALIGN_STACK): Fix a typo in last commit.
Fixes: debbugs:18559
Diffstat (limited to 'src')
-rw-r--r--src/w32term.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32term.h b/src/w32term.h
index fcadca6a9af..f9025fd13ad 100644
--- a/src/w32term.h
+++ b/src/w32term.h
@@ -30,7 +30,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
30 re-align the stack at function entry. Further details about this 30 re-align the stack at function entry. Further details about this
31 can be found in http://www.peterstock.co.uk/games/mingw_sse/. */ 31 can be found in http://www.peterstock.co.uk/games/mingw_sse/. */
32#ifdef __GNUC__ 32#ifdef __GNUC__
33# if defined USE_STACK_LISP_OBJECTS && defined _W64 \ 33# if defined USE_STACK_LISP_OBJECTS && !defined _W64 \
34 && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5 34 && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5
35# define ALIGN_STACK __attribute__((force_align_arg_pointer)) 35# define ALIGN_STACK __attribute__((force_align_arg_pointer))
36# else 36# else