]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Clarify comments in Makefile on -DLUAJIT_ENABLE_LUA52COMPAT.
authorMike Pall <mike>
Thu, 4 Oct 2012 11:55:34 +0000 (13:55 +0200)
committerMike Pall <mike>
Thu, 4 Oct 2012 11:55:34 +0000 (13:55 +0200)
src/Makefile

index 8b7218e7a5a4976327e56815b9100f17f5d6757b..278324a18b76c4a8c11152e03252af17ce5a613c 100644 (file)
@@ -96,9 +96,10 @@ XCFLAGS=
 # make use of it.
 #XCFLAGS+= -DLUAJIT_DISABLE_FFI
 #
-# Enable some upwards-compatible features from Lua 5.2 that are unlikely
-# to break existing code (e.g. __pairs). Note that this does not provide
-# full compatibility with Lua 5.2 at this time.
+# Features from Lua 5.2 that are unlikely to break existing code are
+# enabled by default. Some other features that *might* break some existing
+# code (e.g. __pairs or os.execute() return values) can be enabled here.
+# Note: this does not provide full compatibility with Lua 5.2 at this time.
 #XCFLAGS+= -DLUAJIT_ENABLE_LUA52COMPAT
 #
 # Disable the JIT compiler, i.e. turn LuaJIT into a pure interpreter.