aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/luaconf.h b/luaconf.h
index d473d325..8e5479ab 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.86 2006/09/18 14:03:18 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.87 2007/02/07 17:46:20 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*/
@@ -658,6 +658,18 @@ union luai_Cast { double l_d; long l_l; };
658 658
659 659
660/* 660/*
661@@ LUA_STRFTIMEOPTIONS is the list of valid conversion specifier
662@* characters for the 'strftime' function;
663@@ LUA_STRFTIMEPREFIX is the list of valid modifiers for
664@* that function.
665** CHANGE them if you want to use non-ansi options specific to your system.
666*/
667#define LUA_STRFTIMEOPTIONS "aAbBcdHIjmMpSUwWxXyYz%"
668#define LUA_STRFTIMEPREFIX ""
669
670
671
672/*
661@@ lua_popen spawns a new process connected to the current one through 673@@ lua_popen spawns a new process connected to the current one through
662@* the file streams. 674@* the file streams.
663** CHANGE it if you have a way to implement it in your system. 675** CHANGE it if you have a way to implement it in your system.