diff options
-rw-r--r-- | otfl-blacklist.cnf | 2 | ||||
-rw-r--r-- | otfl-font-nms.lua | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/otfl-blacklist.cnf b/otfl-blacklist.cnf index d9cf068..b659334 100644 --- a/otfl-blacklist.cnf +++ b/otfl-blacklist.cnf @@ -1,2 +1,2 @@ % Tackes ages to load -LastResort.ttf +LastResort.ttf % a MacOSX font, but also available for free from unicode.org diff --git a/otfl-font-nms.lua b/otfl-font-nms.lua index a8ec08a..12da443 100644 --- a/otfl-font-nms.lua +++ b/otfl-font-nms.lua @@ -465,9 +465,12 @@ local function read_blacklist() if files and type(files) == "table" then for _,v in next, files do for line in io.lines(v) do + line = line:strip() -- to get rid of lines like " % foo" if line:find("^%%") or line:is_empty() then -- comment or empty line else + line = line:split("%")[1] + line = line:strip() if trace_search then logs.report("blacklisted file: %s", line) end |