diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-16 21:30:48 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-16 21:30:48 +0200 |
commit | b2235e724443f86716694f4e45df9f1261873069 (patch) | |
tree | de8dd4213007ef0e6eb7e4e5a7fb7395ed985b9c /luaotfload-colors.lua | |
parent | c8b6d55bfb93c5305b8e9cf6eef6412439f855c7 (diff) | |
download | luaotfload-b2235e724443f86716694f4e45df9f1261873069.tar.gz |
adapt strings for 20th century OS
Windows appears to still lack a unicode capable terminal emulator.
http://tug.org/pipermail/luatex/2013-July/004547.html
No comment.
Diffstat (limited to 'luaotfload-colors.lua')
-rw-r--r-- | luaotfload-colors.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luaotfload-colors.lua b/luaotfload-colors.lua index b95e836..ac9291d 100644 --- a/luaotfload-colors.lua +++ b/luaotfload-colors.lua @@ -87,7 +87,7 @@ local sanitize_color_expression = function (digits) local sanitized = lpegmatch(valid_digits, digits) if not sanitized then luaotfload.warning( - "ā%sā is not a valid rgb[a] color expression", digits) + "%q is not a valid rgb[a] color expression", digits) return nil end return sanitized |