diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-07-25 14:20:47 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-07-25 14:20:47 -0300 |
commit | bae57ea088504146883323c1bc122a74b34760c3 (patch) | |
tree | 3a545077e48f71c8da14ab86e039867ed08f45e9 | |
parent | 2557107e918b319c13f9a7b9b157cb660b239e7f (diff) | |
download | lua-bae57ea088504146883323c1bc122a74b34760c3.tar.gz lua-bae57ea088504146883323c1bc122a74b34760c3.tar.bz2 lua-bae57ea088504146883323c1bc122a74b34760c3.zip |
'M_IX86' -> '_M_IX86'
-rw-r--r-- | luaconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.160 2011/06/28 17:14:12 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.161 2011/07/08 20:07:11 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -459,7 +459,7 @@ | |||
459 | 459 | ||
460 | /* On a Microsoft compiler on a Pentium, use assembler to avoid clashes | 460 | /* On a Microsoft compiler on a Pentium, use assembler to avoid clashes |
461 | with a DirectX idiosyncrasy */ | 461 | with a DirectX idiosyncrasy */ |
462 | #if defined(_MSC_VER) && defined(M_IX86) /* { */ | 462 | #if defined(_MSC_VER) && defined(_M_IX86) /* { */ |
463 | 463 | ||
464 | #define MS_ASMTRICK | 464 | #define MS_ASMTRICK |
465 | 465 | ||