diff options
| author | Philipp Gesang <phg42.2a@gmail.com> | 2013-12-14 14:29:21 +0100 | 
|---|---|---|
| committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-12-14 14:29:21 +0100 | 
| commit | 8304d6d429dffe685597fc886048d9f2e2e1e9da (patch) | |
| tree | fe22bac777111f9399e14851ab9ddb0bdf8bc5d3 | |
| parent | 11a33a66bf1a407097c0aea0d2fe7df3f6056f89 (diff) | |
| download | luaotfload-8304d6d429dffe685597fc886048d9f2e2e1e9da.tar.gz | |
[tool] switch blacklist printer to io.*
| -rwxr-xr-x | luaotfload-tool.lua | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/luaotfload-tool.lua b/luaotfload-tool.lua index ec6ee57..deca5ea 100755 --- a/luaotfload-tool.lua +++ b/luaotfload-tool.lua @@ -773,7 +773,7 @@ actions.blacklist = function (job)      names.read_blacklist()      local n = 0      for n, entry in next, table.sortedkeys(names.blacklist) do -        texiowrite_nl(stringformat("(%d %s)", n, entry)) +        iowrite (stringformat("(%d %s)\n", n, entry))      end      return true, false  end @@ -867,7 +867,7 @@ actions.query = function (job)          end          if job.show_info then              show_font_info (foundname, query, job.full_info, job.warnings) -            texiowrite_nl "" +            iowrite "\n"          end      else          logs.names_report(false, 0,  | 
