summaryrefslogtreecommitdiff
path: root/src/lobject.h
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2015-01-12 12:00:00 +0000
committerrepogen <>2015-01-12 12:00:00 +0000
commit34c362812ab38172d3da36404ec9a85f929579c5 (patch)
treea54637781398b630824152ae05672536c0fa8341 /src/lobject.h
parent6b0dd2d3885d020d3154e0da84de92e9ee8b2c82 (diff)
downloadlua-github-5.3.0.tar.gz
Diffstat (limited to 'src/lobject.h')
-rw-r--r--src/lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lobject.h b/src/lobject.h
index 77b4e470..d7d0ebf3 100644
--- a/src/lobject.h
+++ b/src/lobject.h
@@ -1,5 +1,5 @@
/*
-** $Id: lobject.h,v 2.105 2014/12/19 13:36:32 roberto Exp $
+** $Id: lobject.h,v 2.106 2015/01/05 13:52:37 roberto Exp $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -473,7 +473,7 @@ typedef union TKey {
/* copy a value into a key without messing up field 'next' */
-#define setkey(L,key,obj) \
+#define setnodekey(L,key,obj) \
{ TKey *k_=(key); const TValue *io_=(obj); \
k_->nk.value_ = io_->value_; k_->nk.tt_ = io_->tt_; \
(void)L; checkliveness(G(L),io_); }