From: Hironori Kitagawa Date: Sat, 16 Mar 2013 10:33:48 +0000 (+0900) Subject: loading message X-Git-Tag: 20130318.0~3 X-Git-Url: http://git.osdn.net/view?p=luatex-ja%2Fluatexja.git;a=commitdiff_plain;h=80b06f08f50cca186e53effcbecc20cbbf9afbe5;ds=sidebyside loading message --- diff --git a/src/luatexja.lua b/src/luatexja.lua index deee61c..83bfed3 100644 --- a/src/luatexja.lua +++ b/src/luatexja.lua @@ -19,7 +19,7 @@ function luatexja.load_module(name) luatexja.error("File `" .. fn .. "' not found", {'This file ' .. fn .. ' is required for LuaTeX-ja.', 'Please check your installation.'}) else - texio.write('(' .. found .. ')\n') + texio.write_nl('(' .. found .. ')') dofile(found) end end @@ -29,7 +29,7 @@ function luatexja.load_lua(fn) if not found then error("File `" .. fn .. "' not found") else - texio.write('(' .. found .. ')\n') + texio.write_nl('(' .. found .. ')') dofile(found) end end