Changeset 173

Show
Ignore:
Timestamp:
03/12/06 16:31:26 (3 years ago)
Author:
goodea
Message:

use correct prompt
remove backward compatibility things

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/lua51/luaconf.h

    r141 r173  
    231231** prompts dynamically, assigning to globals _PROMPT/_PROMPT2.) 
    232232*/ 
    233 #define LUA_PROMPT              ">
    234 #define LUA_PROMPT2             ">>
     233#define LUA_PROMPT              ">:
     234#define LUA_PROMPT2             ">>:
    235235 
    236236 
     
    322322** access vararg parameters (instead of the old 'arg' table). 
    323323*/ 
    324 #define LUA_COMPAT_VARARG 
     324#undef LUA_COMPAT_VARARG 
    325325 
    326326/* 
     
    329329** the new '%' operator instead of 'math.mod'. 
    330330*/ 
    331 #define LUA_COMPAT_MOD 
     331#undef LUA_COMPAT_MOD 
    332332 
    333333/* 
     
    337337** off the advisory error when nesting [[...]]. 
    338338*/ 
    339 #define LUA_COMPAT_LSTR                1 
     339#undef LUA_COMPAT_LSTR 
    340340 
    341341/* 
     
    344344** 'string.gmatch'. 
    345345*/ 
    346 #define LUA_COMPAT_GFIND 
     346#undef LUA_COMPAT_GFIND 
    347347 
    348348/* 
     
    352352** your uses of 'luaL_openlib' 
    353353*/ 
    354 #define LUA_COMPAT_OPENLIB 
     354#undef LUA_COMPAT_OPENLIB 
    355355 
    356356