[build] Print a newline after printing comments

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-05-26 20:17:15 +02:00
parent 710c457f08
commit 51e72f1d68
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ for i, line in ipairs(ilines) do
if libtype == "meta" then sep = ":" else sep = "." end if libtype == "meta" then sep = ":" else sep = "." end
print("*" .. libname .. sep .. fctname .. "*::") print("*" .. libname .. sep .. fctname .. "*::")
print(function_doc[fctdef]:comment_clean()) print(function_doc[fctdef]:comment_clean())
print()
end end
end end
end end