From 109a794109f15431256c70ffe9f6ac5cacce4cfd Mon Sep 17 00:00:00 2001 From: steve donovan Date: Wed, 13 Apr 2011 18:57:28 +0200 Subject: [PATCH] --dump broke with PL: an example of abusing a List --- doc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.lua b/doc.lua index 9b2226c..1e32688 100644 --- a/doc.lua +++ b/doc.lua @@ -320,7 +320,7 @@ function Item:dump(verbose) if verbose then print(self.type,name,self.summary) if self.description then print(self.description) end - for p in self.params:iter() do + for _,p in ipairs(self.params) do print(p,self.params[p]) end for tag, value in pairs(self.tags) do