fixed issue #47; flag-style tags like @local were blowing up with description collection

This commit is contained in:
steve donovan 2013-03-07 13:49:39 +02:00
parent d7ee2d806f
commit dee7cd200a
2 changed files with 11 additions and 1 deletions

View File

@ -379,7 +379,9 @@ function Item:_init(tags,file,line)
end end
function Item:add_to_description (rest) function Item:add_to_description (rest)
self.description = (self.description or '') .. rest if type(rest) == 'string' then
self.description = (self.description or '') .. rest
end
end end
function Item:set_tag (tag,value) function Item:set_tag (tag,value)

View File

@ -6,6 +6,13 @@ A simple module with examples.
local usage = {} local usage = {}
local helper
--- a local helper function.
-- @local
function helper ()
end
---------- ----------
-- A simple vector class. -- A simple vector class.
-- --
@ -18,6 +25,7 @@ local usage = {}
local Vector = {} local Vector = {}
usage.Vector = {} usage.Vector = {}
---------- ----------
-- Create a vector from an array `t`. -- Create a vector from an array `t`.
-- `Vector` is also callable! -- `Vector` is also callable!