summaryrefslogtreecommitdiff
path: root/lib/lua/includes
diff options
context:
space:
mode:
authorpixel <pixel>2008-09-23 16:28:53 +0000
committerpixel <pixel>2008-09-23 16:28:53 +0000
commit23bfd2d061c11a136aee6c639dec88077fcf7864 (patch)
treed561444a40fa241d8beabc804d98a6a75543390c /lib/lua/includes
parent88a8ad8c7d83cf009b9ca6756e5b4fb5c333435e (diff)
Upgrading to lua 5.1.4
Diffstat (limited to 'lib/lua/includes')
-rw-r--r--lib/lua/includes/lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lua/includes/lobject.h b/lib/lua/includes/lobject.h
index 01c0db8..11e1574 100644
--- a/lib/lua/includes/lobject.h
+++ b/lib/lua/includes/lobject.h
@@ -1,5 +1,5 @@
/*
-** $Id: lobject.h,v 1.5 2007-07-27 10:05:53 pixel Exp $
+** $Id: lobject.h,v 1.6 2008-09-23 16:28:53 pixel Exp $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -208,7 +208,7 @@ typedef union TString {
#define getstr(ts) cast(const char *, (ts) + 1)
-#define svalue(o) getstr(tsvalue(o))
+#define svalue(o) getstr(rawtsvalue(o))