summaryrefslogtreecommitdiff
path: root/Doc/Manual/Lua.html
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2007-03-26 01:12:09 +0000
committerOlly Betts <olly@survex.com>2007-03-26 01:12:09 +0000
commit8d304ae602d6226aedfea49a341ce0d18ca6d674 (patch)
treeab07a5b7ad381f49ab30fe69d77d6cd9c59e96a4 /Doc/Manual/Lua.html
parent4f605e12e2e33c82145229958775e03657b6687a (diff)
downloadswig-8d304ae602d6226aedfea49a341ce0d18ca6d674.tar.gz
Escape < and > in HTML since unescaped instances confuse htmldoc and cause it
to mangle the "one HTML page" version of the manual. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9662 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc/Manual/Lua.html')
-rw-r--r--Doc/Manual/Lua.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Manual/Lua.html b/Doc/Manual/Lua.html
index 4ff3256e6..309f08c53 100644
--- a/Doc/Manual/Lua.html
+++ b/Doc/Manual/Lua.html
@@ -107,7 +107,7 @@ extern int Example_Init(LuaState* L); // declare the wrapped module
int main(int argc,char* argv[])
{
lua_State *L;
- if (argc<2)
+ if (argc&lt;2)
{
printf("%s: &lt;filename.lua&gt;\n",argv[0]);
return 0;