summaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-29 15:52:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-29 15:52:46 -0200
commitfdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0 (patch)
tree6a546b664d3abca7bddc9e650dc9062fed430c4c /luaconf.h
parentc6ef3e2672859a26bb5f0ab5fa3f99a3fb32d5b4 (diff)
downloadlua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.tar.gz
lua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.tar.bz2
lua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.zip
comment typos
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/luaconf.h b/luaconf.h
index 46c3a281..454eb2f8 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.146 2010/10/28 15:18:25 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.147 2010/10/29 11:13:21 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*/
@@ -457,7 +457,7 @@
457#if defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) && \ 457#if defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) && \
458 !defined(LUA_NOIEEE754TRICK) /* { */ 458 !defined(LUA_NOIEEE754TRICK) /* { */
459 459
460/* On a Microsoft compiler on a Pentium, use assembler to avoid chashes 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
@@ -473,7 +473,7 @@
473union luai_Cast { double l_d; LUA_INT32 l_p[2]; }; 473union luai_Cast { double l_d; LUA_INT32 l_p[2]; };
474 474
475/* 475/*
476@@ LUA_IEEEENDIAN is the endianess of doubles in your machine 476@@ LUA_IEEEENDIAN is the endianness of doubles in your machine
477@@ (0 for little endian, 1 for big endian); if not defined, Lua will 477@@ (0 for little endian, 1 for big endian); if not defined, Lua will
478@@ check it dynamically. 478@@ check it dynamically.
479*/ 479*/