From bdf566a8a32450c2eb6273c8c1a92e2181b6846e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 25 Oct 2014 09:50:46 -0200 Subject: `name' in comments changed to 'name' --- lobject.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index c721d3e8..54e4c020 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 2.102 2014/09/04 18:15:29 roberto Exp roberto $ +** $Id: lobject.h,v 2.103 2014/10/01 11:52:33 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -345,7 +345,7 @@ typedef struct Udata { ** Ensures that address after this type is always fully aligned. */ typedef union UUdata { - L_Umaxalign dummy; /* ensures maximum alignment for `local' udata */ + L_Umaxalign dummy; /* ensures maximum alignment for 'local' udata */ Udata uv; } UUdata; @@ -399,10 +399,10 @@ typedef struct Proto { lu_byte is_vararg; lu_byte maxstacksize; /* maximum stack used by this function */ int sizeupvalues; /* size of 'upvalues' */ - int sizek; /* size of `k' */ + int sizek; /* size of 'k' */ int sizecode; int sizelineinfo; - int sizep; /* size of `p' */ + int sizep; /* size of 'p' */ int sizelocvars; int linedefined; int lastlinedefined; @@ -486,8 +486,8 @@ typedef struct Node { typedef struct Table { CommonHeader; lu_byte flags; /* 1<