summaryrefslogtreecommitdiff
path: root/luaotfload-override.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-01-03 13:53:23 -0800
committerPhilipp Gesang <phg42.2a@gmail.com>2014-01-03 13:53:23 -0800
commit70e80bb79416b0089ea9ee5f01a11be34bef251c (patch)
treef58776f8e9e616553e18198d3a4e62c87c6feeef /luaotfload-override.lua
parent61e48b2eb03f98ea6335730e5c9cf0a6f4462c44 (diff)
parentbb99e2c94aaa32cb3635ec6e35a4dc8ca6e309ae (diff)
downloadluaotfload-70e80bb79416b0089ea9ee5f01a11be34bef251c.tar.gz
Merge pull request #167 from phi-gamma/master
fixes to 2.4
Diffstat (limited to 'luaotfload-override.lua')
-rw-r--r--luaotfload-override.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/luaotfload-override.lua b/luaotfload-override.lua
index b1773fa..fe70dcb 100644
--- a/luaotfload-override.lua
+++ b/luaotfload-override.lua
@@ -166,6 +166,8 @@ if texjob == true then
statusln = function (str)
if first_status == false then
iowrite (kill_line)
+ else
+ iowrite "\n"
end
iowrite (str)
end
@@ -326,7 +328,9 @@ end
local status_stop = function (...)
if first_status == false then
status_writer(...)
- writeln ""
+ if texjob == false then
+ writeln ""
+ end
end
end