field 'op' renamed to 'open'

This commit is contained in:
Roberto Ierusalimschy
2014-02-15 11:12:01 -02:00
parent 6a24bd17a8
commit ffa96d988d
6 changed files with 17 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lfunc.h,v 2.10 2013/08/27 18:53:35 roberto Exp roberto $
** $Id: lfunc.h,v 2.11 2013/09/11 15:17:00 roberto Exp roberto $
** Auxiliary functions to manipulate prototypes and closures
** See Copyright Notice in lua.h
*/
@@ -28,7 +28,7 @@ struct UpVal {
struct { /* (when open) */
UpVal *next; /* linked list */
int touched; /* mark to avoid cycles with dead threads */
} op;
} open;
TValue value; /* the value (when closed) */
} u;
};