aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lvm.h b/lvm.h
index 86fb874c..4e9d7101 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.32 2014/07/30 14:00:14 roberto Exp roberto $ 2** $Id: lvm.h,v 2.33 2014/07/30 14:42:44 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -16,14 +16,14 @@
16#if !defined(LUA_NOCVTN2S) 16#if !defined(LUA_NOCVTN2S)
17#define cvt2str(o) ttisnumber(o) 17#define cvt2str(o) ttisnumber(o)
18#else 18#else
19#define cvt2str(o) 0 /* no convertion from numbers to strings */ 19#define cvt2str(o) 0 /* no conversion from numbers to strings */
20#endif 20#endif
21 21
22 22
23#if !defined(LUA_NOCVTS2N) 23#if !defined(LUA_NOCVTS2N)
24#define cvt2num(o) ttisstring(o) 24#define cvt2num(o) ttisstring(o)
25#else 25#else
26#define cvt2num(o) 0 /* no convertion from strings to numbers */ 26#define cvt2num(o) 0 /* no conversion from strings to numbers */
27#endif 27#endif
28 28
29 29