diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2015-10-29 07:39:59 +0100 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2015-10-29 07:39:59 +0100 |
commit | 4ab63d7a670d90f9ffcbd2c35b363c432c043d5d (patch) | |
tree | a698442a7ba3a95ca296815c094a064bc9003e88 /src | |
parent | e52df63570da80bf121fd9b9294de5a2d037f1b6 (diff) | |
download | luaotfload-4ab63d7a670d90f9ffcbd2c35b363c432c043d5d.tar.gz |
[diagnose] fix indentation of status message
Diffstat (limited to 'src')
-rw-r--r-- | src/luaotfload-diagnostics.lua | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/luaotfload-diagnostics.lua b/src/luaotfload-diagnostics.lua index 80e461c..255b5a5 100644 --- a/src/luaotfload-diagnostics.lua +++ b/src/luaotfload-diagnostics.lua @@ -655,27 +655,27 @@ local diagnose = function (job) you may sleep well.") return true, false end - out ( [[=============================================== - WARNING - =============================================== + out ( [[=============================================== + WARNING + =============================================== - The diagnostic detected %d errors. + The diagnostic detected %d errors. - This version of luaotfload may have been - tampered with. Modified versions of the - luaotfload source are unsupported. Read the log - carefully and get a clean version from CTAN or - github: + This version of luaotfload may have been + tampered with. Modified versions of the + luaotfload source are unsupported. Read the log + carefully and get a clean version from CTAN or + github: - × http://www.ctan.org/pkg/luaotfload - × https://github.com/lualatex/luaotfload/releases + × http://www.ctan.org/pkg/luaotfload + × https://github.com/lualatex/luaotfload/releases - If you are uncertain as to how to proceed, then - ask on the lualatex mailing list: + If you are uncertain as to how to proceed, then + ask on the lualatex mailing list: - http://www.tug.org/mailman/listinfo/lualatex-dev + http://www.tug.org/mailman/listinfo/lualatex-dev - =============================================== + =============================================== ]], errcnt) return true, false end |