瀏覽代碼

macro 'lua_checkmode' + typos in comments

Roberto Ierusalimschy 12 年之前
父節點
當前提交
76492b4bb2
共有 1 個文件被更改,包括 10 次插入2 次删除
  1. 10 2
      liolib.c

+ 10 - 2
liolib.c

@@ -1,5 +1,5 @@
 /*
-** $Id: liolib.c,v 2.107 2011/11/14 16:55:35 roberto Exp roberto $
+** $Id: liolib.c,v 2.108 2011/11/25 12:50:03 roberto Exp roberto $
 ** Standard I/O (and system) library
 ** See Copyright Notice in lua.h
 */
@@ -29,6 +29,14 @@
 #include "lualib.h"
 
 
+#if !defined(lua_checkmode)
+
+/*
+** this macro can accept other 'modes' for 'fopen' besides the standard ones
+*/
+#define lua_checkmode(mode)	0
+
+#endif
 
 /*
 ** {======================================================
@@ -217,7 +225,7 @@ static int io_open (lua_State *L) {
   if (!(mode[i] != '\0' && strchr("rwa", mode[i++]) != NULL &&
        (mode[i] != '+' || ++i) &&  /* skip if char is '+' */
        (mode[i] != 'b' || ++i) &&  /* skip if char is 'b' */
-       (mode[i] == '\0')))
+       (mode[i] == '\0')) && !lua_checkmode(mode))
     return luaL_error(L, "invalid mode " LUA_QS
                          " (should match " LUA_QL("[rwa]%%+?b?") ")", mode);
   p->f = fopen(filename, mode);