mirror of
https://github.com/lua/lua
synced 2026-09-26 16:17:11 +03:00
field 'op' renamed to 'open'
This commit is contained in:
parent
6a24bd17a8
commit
ffa96d988d
6 changed files with 17 additions and 17 deletions
4
lfunc.h
4
lfunc.h
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue