diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-12-08 13:12:07 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-12-08 13:12:07 -0200 |
commit | 64e25a61866f431021889c55974617d60f2459be (patch) | |
tree | c2cdd6bfe692977e2332544a24df7ec67eeed421 | |
parent | 460968353f602af5986e706ff776c80455f1f8fa (diff) | |
download | lua-64e25a61866f431021889c55974617d60f2459be.tar.gz lua-64e25a61866f431021889c55974617d60f2459be.tar.bz2 lua-64e25a61866f431021889c55974617d60f2459be.zip |
avoid octal numerals
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.322 2014/11/28 19:13:39 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.323 2014/11/29 17:24:05 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -28,7 +28,7 @@ | |||
28 | 28 | ||
29 | 29 | ||
30 | /* mark for precompiled code ('<esc>Lua') */ | 30 | /* mark for precompiled code ('<esc>Lua') */ |
31 | #define LUA_SIGNATURE "\033Lua" | 31 | #define LUA_SIGNATURE "\x1bLua" |
32 | 32 | ||
33 | /* option for multiple returns in 'lua_pcall' and 'lua_call' */ | 33 | /* option for multiple returns in 'lua_pcall' and 'lua_call' */ |
34 | #define LUA_MULTRET (-1) | 34 | #define LUA_MULTRET (-1) |