diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2014-12-09 22:57:46 +0100 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-12-09 22:57:46 +0100 |
commit | 0c443eae5ad75d999e0c41d42d5ab3530024a611 (patch) | |
tree | 9c045924e8d6c735d7823ca8c0b2d1efe3a3bf48 | |
parent | 3247d7476f65bcc7164764fc373c171c67e813e7 (diff) | |
download | luaotfload-0c443eae5ad75d999e0c41d42d5ab3530024a611.tar.gz |
[import] fix error message
-rw-r--r-- | scripts/mkimport | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkimport b/scripts/mkimport index f211c2f..8622d5e 100644 --- a/scripts/mkimport +++ b/scripts/mkimport @@ -433,7 +433,7 @@ local job_kind = table.mirrored { --- job_kind -> bool local check_job = function (j) - return job_kind[j] or die ("invalid job type ā" .. job .. "ā.") + return job_kind[j] or die ("invalid job type ā%sā.", j) end ------------------------------------------------------------------------------- |