diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-07-03 11:21:41 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-07-03 11:21:41 -0300 |
| commit | f858a155c2289015701c2c03fd99bc1e3688eefb (patch) | |
| tree | dea6eb5a368e0a50d1e14ce53dd17a28e96d1d0e | |
| parent | 9e7de9473c65baee1f567852a778f2d33a47ea83 (diff) | |
| download | lua-f858a155c2289015701c2c03fd99bc1e3688eefb.tar.gz lua-f858a155c2289015701c2c03fd99bc1e3688eefb.tar.bz2 lua-f858a155c2289015701c2c03fd99bc1e3688eefb.zip | |
identation error (pointed by lint)
| -rw-r--r-- | lauxlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lauxlib.c,v 1.177 2008/06/12 14:37:27 roberto Exp roberto $ | 2 | ** $Id: lauxlib.c,v 1.178 2008/06/13 18:45:35 roberto Exp roberto $ |
| 3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -474,7 +474,7 @@ LUALIB_API int luaL_loadfile (lua_State *L, const char *filename) { | |||
| 474 | lf.f = freopen(filename, "rb", lf.f); /* reopen in binary mode */ | 474 | lf.f = freopen(filename, "rb", lf.f); /* reopen in binary mode */ |
| 475 | if (lf.f == NULL) return errfile(L, "reopen", fnameindex); | 475 | if (lf.f == NULL) return errfile(L, "reopen", fnameindex); |
| 476 | /* skip eventual `#!...' */ | 476 | /* skip eventual `#!...' */ |
| 477 | while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ; | 477 | while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ; |
| 478 | lf.extraline = 0; | 478 | lf.extraline = 0; |
| 479 | } | 479 | } |
| 480 | ungetc(c, lf.f); | 480 | ungetc(c, lf.f); |
