aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-12-22 11:08:50 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-12-22 11:08:50 -0200
commit2a235312f029cbd2b1eb79f158d4f74b3ffa1b85 (patch)
treeee359ba97c390d1d6709243ab7c92c1e8252617a /ltable.h
parent9903dd52a39fbe4531596b1266e226f01769de21 (diff)
downloadlua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.tar.gz
lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.tar.bz2
lua-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.zip
detail (removing spaces at end of lines)
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.h b/ltable.h
index 8b80a6df..bd3543b5 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 2.21 2015/11/03 15:47:30 roberto Exp roberto $ 2** $Id: ltable.h,v 2.22 2016/11/07 12:38:35 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -15,7 +15,7 @@
15#define gnext(n) ((n)->i_key.nk.next) 15#define gnext(n) ((n)->i_key.nk.next)
16 16
17 17
18/* 'const' to avoid wrong writings that can mess up field 'next' */ 18/* 'const' to avoid wrong writings that can mess up field 'next' */
19#define gkey(n) cast(const TValue*, (&(n)->i_key.tvk)) 19#define gkey(n) cast(const TValue*, (&(n)->i_key.tvk))
20 20
21/* 21/*