prevent crash if C extension module name not specified

This commit is contained in:
steve donovan 2011-04-13 18:22:28 +02:00
parent 0e36a20ca4
commit daaa2d1208
1 changed files with 2 additions and 1 deletions

View File

@ -149,7 +149,8 @@ function Lang:grab_block_comment(v,tok)
return tools.grab_block_comment(v,tok,self.end_block1,self.end_block2) return tools.grab_block_comment(v,tok,self.end_block1,self.end_block2)
end end
function Lang:find_module(tok) function Lang:find_module(tok,t,v)
return '...',t,v
end end
function Lang:function_follows(t,v) function Lang:function_follows(t,v)