aboutsummaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-02-15 11:12:01 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-02-15 11:12:01 -0200
commitffa96d988d60f31591014fe417c27e44fc3116d1 (patch)
tree8048f52acbc6bbda2733849dfb14b0b57e0ff416 /lfunc.h
parent6a24bd17a8203394405005c1d63d08f0c7c25a27 (diff)
downloadlua-ffa96d988d60f31591014fe417c27e44fc3116d1.tar.gz
lua-ffa96d988d60f31591014fe417c27e44fc3116d1.tar.bz2
lua-ffa96d988d60f31591014fe417c27e44fc3116d1.zip
field 'op' renamed to 'open'
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lfunc.h b/lfunc.h
index 11438ab7..9ed51767 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lfunc.h,v 2.10 2013/08/27 18:53:35 roberto Exp roberto $ 2** $Id: lfunc.h,v 2.11 2013/09/11 15:17:00 roberto Exp roberto $
3** Auxiliary functions to manipulate prototypes and closures 3** Auxiliary functions to manipulate prototypes and closures
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -28,7 +28,7 @@ struct UpVal {
28 struct { /* (when open) */ 28 struct { /* (when open) */
29 UpVal *next; /* linked list */ 29 UpVal *next; /* linked list */
30 int touched; /* mark to avoid cycles with dead threads */ 30 int touched; /* mark to avoid cycles with dead threads */
31 } op; 31 } open;
32 TValue value; /* the value (when closed) */ 32 TValue value; /* the value (when closed) */
33 } u; 33 } u;
34}; 34};