summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 10dd7529..f98eb812 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.104 2014/10/25 11:50:46 roberto Exp roberto $ 2** $Id: lobject.h,v 2.105 2014/12/19 13:36:32 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -473,7 +473,7 @@ typedef union TKey {
473 473
474 474
475/* copy a value into a key without messing up field 'next' */ 475/* copy a value into a key without messing up field 'next' */
476#define setkey(L,key,obj) \ 476#define setnodekey(L,key,obj) \
477 { TKey *k_=(key); const TValue *io_=(obj); \ 477 { TKey *k_=(key); const TValue *io_=(obj); \
478 k_->nk.value_ = io_->value_; k_->nk.tt_ = io_->tt_; \ 478 k_->nk.value_ = io_->value_; k_->nk.tt_ = io_->tt_; \
479 (void)L; checkliveness(G(L),io_); } 479 (void)L; checkliveness(G(L),io_); }