diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-06-03 15:06:18 +0300 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-06-03 15:06:18 +0300 |
commit | d2b32f51a324046b00757cf6a5e0e8b1b73327ff (patch) | |
tree | ff5b7e4356023c1ccc8fdf181a49ee1da5e90733 /otfl-font-clr.lua | |
parent | 782e67f7807e25c88a5e1d7fc3bfeddf33fb6adf (diff) | |
download | luaotfload-d2b32f51a324046b00757cf6a5e0e8b1b73327ff.tar.gz |
Explicitely convert color value to string
Fixes #9
Diffstat (limited to 'otfl-font-clr.lua')
-rw-r--r-- | otfl-font-clr.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otfl-font-clr.lua b/otfl-font-clr.lua index e1f0faa..a6cf63f 100644 --- a/otfl-font-clr.lua +++ b/otfl-font-clr.lua @@ -16,7 +16,7 @@ table.insert(fonts.triggers,"color") function initializers.common.color(tfmdata,value) if value then - tfmdata.color = value + tfmdata.color = tostring(value) add_color_callback() end end |