diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-11-03 03:45:20 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-11-03 03:52:31 +0200 |
commit | 430e36b5a723b307678070fd5b8597ab7c57a935 (patch) | |
tree | 486f1ad2035cea6698c0c550790e87bcd5d3ff13 /otfl-font-tfm.lua | |
parent | f089d7c2866791b5b48c07fe6a6c001727ca50c1 (diff) | |
download | luaotfload-430e36b5a723b307678070fd5b8597ab7c57a935.tar.gz |
Sync with context 2010.11.01
Not tested, yet.
Diffstat (limited to 'otfl-font-tfm.lua')
-rw-r--r-- | otfl-font-tfm.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/otfl-font-tfm.lua b/otfl-font-tfm.lua index 4d80f07..7a16b28 100644 --- a/otfl-font-tfm.lua +++ b/otfl-font-tfm.lua @@ -564,13 +564,13 @@ function tfm.scale(tfmtable, scaledpoints, relativeid) local ivc = vc[i] local key = ivc[1] if key == "right" then - tt[#tt+1] = { key, ivc[2]*hdelta } + tt[i] = { key, ivc[2]*hdelta } elseif key == "down" then - tt[#tt+1] = { key, ivc[2]*vdelta } + tt[i] = { key, ivc[2]*vdelta } elseif key == "rule" then - tt[#tt+1] = { key, ivc[2]*vdelta, ivc[3]*hdelta } + tt[i] = { key, ivc[2]*vdelta, ivc[3]*hdelta } else -- not comment - tt[#tt+1] = ivc -- shared since in cache and untouched + tt[i] = ivc -- shared since in cache and untouched end end chr.commands = tt |