diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-08-31 12:07:10 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-08-31 12:07:10 +0200 |
commit | d37b2982fe11f4d476b6dbc4c33065682af3855b (patch) | |
tree | ecd09543edb76dc81e3322f69ba3e1e331da6d64 /luaotfload-extralibs.lua | |
parent | 4dd4ee4df065d2681486259bf59dbac8136ead53 (diff) | |
download | luaotfload-d37b2982fe11f4d476b6dbc4c33065682af3855b.tar.gz |
[letterspacing] do not skip first glyph if liga
Diffstat (limited to 'luaotfload-extralibs.lua')
-rw-r--r-- | luaotfload-extralibs.lua | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/luaotfload-extralibs.lua b/luaotfload-extralibs.lua index 3769e06..5444b30 100644 --- a/luaotfload-extralibs.lua +++ b/luaotfload-extralibs.lua @@ -369,11 +369,10 @@ kerns.disablecharacterkerning = disablecharacterkerning --- now for the simplistic variant --- unit -> bool local enablefontkerning = function ( ) - return add_processor( - kernfont.handler, - "typesetters.kernfont", - "pre_linebreak_filter", "hpack_filter" - ) + return add_processor( kernfont.handler + , "typesetters.kernfont" + , "pre_linebreak_filter" + , "hpack_filter") end --- unit -> bool |