From 2a235312f029cbd2b1eb79f158d4f74b3ffa1b85 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 22 Dec 2016 11:08:50 -0200 Subject: detail (removing spaces at end of lines) --- lua.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index dbfb9075..2ca9a3a5 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.227 2016/07/18 17:55:59 roberto Exp roberto $ +** $Id: lua.c,v 1.228 2016/12/13 15:50:58 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -461,7 +461,7 @@ static int handle_script (lua_State *L, char **argv) { /* ** Traverses all arguments from 'argv', returning a mask with those ** needed before running any Lua code (or an error code if it finds -** any invalid argument). 'first' returns the first not-handled argument +** any invalid argument). 'first' returns the first not-handled argument ** (either the script name or a bad argument in case of error). */ static int collectargs (char **argv, int *first) { @@ -485,7 +485,7 @@ static int collectargs (char **argv, int *first) { args |= has_E; break; case 'i': - args |= has_i; /* (-i implies -v) *//* FALLTHROUGH */ + args |= has_i; /* (-i implies -v) *//* FALLTHROUGH */ case 'v': if (argv[i][2] != '\0') /* extra characters after 1st? */ return has_error; /* invalid option */ -- cgit v1.2.3-55-g6feb