We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 05e6228 + 89044bb commit b54281dCopy full SHA for b54281d
lua/themepark.lua
@@ -186,7 +186,7 @@ function themepark:init_theme(theme)
186
end
187
local file = io.open(theme_file)
188
if file then
189
- local script = file:read('a*')
+ local script = file:read('*a')
190
file:close()
191
192
local func, msg = load(script, theme_file, 't')
@@ -243,7 +243,7 @@ function themepark:add_topic(topic, options)
243
error("No topic '" .. topic .. "' in theme '" .. theme_name .. "'")
244
245
246
247
248
249
local func, msg = load(script, filename, 't')
0 commit comments