diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2015-07-22 23:12:04 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2015-07-22 23:12:04 +0200 |
commit | 548fd5b0934425247e1c4e2a9aa52955813625ff (patch) | |
tree | 3cb0dd107d8c0b8878c87bf9c8d74657d04d2798 /src/luaotfload-letterspace.lua | |
parent | 6f273e157c650d396cbad8e09e059b8b7c359818 (diff) | |
parent | ff022fd5de42d55aef94ce7cd7e221055f1d0c6a (diff) | |
download | luaotfload-548fd5b0934425247e1c4e2a9aa52955813625ff.tar.gz |
Merge pull request #279 from phi-gamma/master
Restructure initialization
Diffstat (limited to 'src/luaotfload-letterspace.lua')
-rw-r--r-- | src/luaotfload-letterspace.lua | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/luaotfload-letterspace.lua b/src/luaotfload-letterspace.lua index 8956f82..9a0646b 100644 --- a/src/luaotfload-letterspace.lua +++ b/src/luaotfload-letterspace.lua @@ -471,12 +471,15 @@ local enablefontkerning = function ( ) local handler = function (hd) local direct_hd = todirect (hd) - local hd, _done = kerncharacters (hd) - if not hd then --- bad + logreport ("term", 5, "letterspace", + "kerncharacters() invoked with node.direct interface \z + (``%s`` -> ``%s``)", tostring (hd), tostring (direct_hd)) + local direct_hd, _done = kerncharacters (direct_hd) + if not direct_hd then --- bad logreport ("both", 0, "letterspace", "kerncharacters() failed to return a valid new head") end - return tonode (hd) + return tonode (direct_hd) end return add_processor( handler |