avoid trailing white spaces

This commit is contained in:
Roberto Ierusalimschy
2006-09-11 11:07:24 -03:00
parent cedd2092eb
commit a7c9e45c64
20 changed files with 65 additions and 65 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lobject.h,v 2.19 2006/01/10 12:51:53 roberto Exp roberto $
** $Id: lobject.h,v 2.20 2006/01/18 11:37:34 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -337,7 +337,7 @@ typedef struct Node {
typedef struct Table {
CommonHeader;
lu_byte flags; /* 1<<p means tagmethod(p) is not present */
lu_byte flags; /* 1<<p means tagmethod(p) is not present */
lu_byte lsizenode; /* log2 of size of `node' array */
struct Table *metatable;
TValue *array; /* array part */