From ffa96d988d60f31591014fe417c27e44fc3116d1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 15 Feb 2014 11:12:01 -0200 Subject: field 'op' renamed to 'open' --- lfunc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lfunc.h') diff --git a/lfunc.h b/lfunc.h index 11438ab7..9ed51767 100644 --- a/lfunc.h +++ b/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; }; -- cgit v1.2.3-55-g6feb