From 8f0f54ec3835f5d1637ae2720e2b4de6a177574a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 30 Mar 2000 17:55:50 -0300 Subject: name change --- lobject.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 844111ff..d4912251 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.56 2000/03/27 20:10:21 roberto Exp roberto $ +** $Id: lobject.h,v 1.57 2000/03/29 20:19:20 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -45,8 +45,8 @@ typedef enum { TAG_CCLOSURE, /* fixed tag for C closures */ TAG_NIL, /* last "pre-defined" tag */ - TAG_LCLMARK, /* mark for Lua closures */ - TAG_CCLMARK, /* mark for C closures */ + TAG_LMARK, /* mark for Lua closures */ + TAG_CMARK, /* mark for C closures */ TAG_LINE } lua_Type; @@ -58,12 +58,12 @@ typedef enum { /* ** check whether `t' is a mark */ -#define is_T_MARK(t) ((t) == TAG_LCLMARK || (t) == TAG_CCLMARK) +#define is_T_MARK(t) ((t) == TAG_LMARK || (t) == TAG_CMARK) typedef union { struct TString *ts; /* TAG_STRING, TAG_USERDATA */ - struct Closure *cl; /* TAG_[CL]CLOSURE, TAG_[CL]CLMARK */ + struct Closure *cl; /* TAG_[CL]CLOSURE, TAG_[CL]MARK */ struct Hash *a; /* TAG_TABLE */ Number n; /* TAG_NUMBER */ int i; /* TAG_LINE */ -- cgit v1.2.3-55-g6feb