From 027b5d9deb64c0324a358638d6dc7b25c21358cb Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Tue, 26 Apr 2016 15:15:00 -0700 Subject: [PATCH] fix options.origin (obvious typo) --- lips/Collector.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lips/Collector.lua b/lips/Collector.lua index a3a8a51..2fb21a7 100644 --- a/lips/Collector.lua +++ b/lips/Collector.lua @@ -232,8 +232,8 @@ function Collector:collect(tokens, fn) self.statements = {} -- this works, but probably shouldn't be in this function specifically - if self.options.offset then - local s = Statement('(options)', 0, '!ORG', self.options.offset) + if self.options.origin then + local s = Statement('(options)', 0, '!ORG', self.options.origin) insert(self.statements, s) end if self.options.base then