Skip to content

Commit

Permalink
trimmed trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
agladysh committed Jun 12, 2010
1 parent 9422266 commit 4dbadd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions limlib2.c
Expand Up @@ -63,7 +63,7 @@ static int color_new(lua_State *L) {
args[3]=luaL_optint(L, 4, 255); /* alpha */
for (i=0; i<4; i++)
luaL_argcheck(L, args[i] >= 0 && args[i] <= 255, i+1, "values must be >= 0 and <= 255");

c = push_Color(L);
c->red=args[0];
c->green=args[1];
Expand Down Expand Up @@ -505,7 +505,7 @@ static int fontm_get_advance(lua_State *L) {
/* fnt:get_inset(str) */
static int fontm_get_inset(lua_State *L) {
Font fo = check_Font(L, 1);

imlib_context_set_font(fo);
lua_pushinteger(L, imlib_get_text_inset(luaL_checkstring(L, 2)));
return 1;
Expand Down Expand Up @@ -718,7 +718,7 @@ static int imagem_get_pixel(lua_State *L) {
return 1;
}

/*** imlib2.image metamethods which wrap functions that return copies (but are
/*** imlib2.image metamethods which wrap functions that return copies (but are
* written to change self, to fit in with the rest of the api
***/

Expand Down

0 comments on commit 4dbadd2

Please sign in to comment.