Author: paultcochrane
Date: Sat Mar 31 05:42:34 2007
New Revision: 17888
Modified:
trunk/languages/lua/pmc/luastring.pmc
Log:
[lua] Fixed parentheses as per coding standards
Patch courtesy of Shawn M Moore <sartak at gmail dot com>
Modified: trunk/languages/lua/pmc/luastring.pmc
==============================================================================
--- trunk/languages/lua/pmc/luastring.pmc (original)
+++ trunk/languages/lua/pmc/luastring.pmc Sat Mar 31 05:42:34 2007
@@ -113,7 +113,7 @@
*/
void mark () {
- if(PMC_str_val(SELF))
+ if (PMC_str_val(SELF))
pobject_lives(INTERP, (PObj *)PMC_str_val(SELF));
}