mirror of
https://github.com/notwa/lips
synced 2024-11-14 09:19:02 -08:00
actually implement path handling for .incasm
This commit is contained in:
parent
1540062a6f
commit
bfbe2845e6
1 changed files with 4 additions and 1 deletions
|
@ -300,7 +300,10 @@ function Lexer:lex_include(_yield)
|
|||
if self.options.path then
|
||||
fn = self.options.path..fn
|
||||
end
|
||||
local sublexer = Lexer(util.readfile(fn), fn, self.options)
|
||||
|
||||
local new_options = setmetatable({}, {__index=self.options})
|
||||
new_options.path = fn:match(".*/")
|
||||
local sublexer = Lexer(util.readfile(fn), fn, new_options)
|
||||
sublexer:lex(_yield)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue