summaryrefslogtreecommitdiff
path: root/tex/context/base/typo-fln.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2013-09-21 12:20:24 +0300
committerMarius <mariausol@gmail.com>2013-09-21 12:20:24 +0300
commit669fad2969a69ae106153a5c1800aa96f98804b8 (patch)
tree06c068eddac37813745de029eb006c4f25ebfe30 /tex/context/base/typo-fln.lua
parentb608d7e354ab8caf3b34539923c2b68b4d1d0438 (diff)
downloadcontext-669fad2969a69ae106153a5c1800aa96f98804b8.tar.gz
beta 2013.09.21 10:50
Diffstat (limited to 'tex/context/base/typo-fln.lua')
-rw-r--r--tex/context/base/typo-fln.lua11
1 files changed, 5 insertions, 6 deletions
diff --git a/tex/context/base/typo-fln.lua b/tex/context/base/typo-fln.lua
index 38aba2d22..db3331b0a 100644
--- a/tex/context/base/typo-fln.lua
+++ b/tex/context/base/typo-fln.lua
@@ -37,10 +37,9 @@ local insert_node_after = nodes.insert_after
local insert_node_before = nodes.insert_before
local hpack_node_list = nodes.hpack
-local hpack_filter = nodes.processors.hpack_filter
-
-local newpenalty = nodes.pool.penalty
-local newkern = nodes.pool.kern
+local nodepool = nodes.pool
+local newpenalty = nodepool.penalty
+local newkern = nodepool.kern
local tracerrule = nodes.tracers.pool.nodes.rule
local actions = { }
@@ -217,11 +216,11 @@ end
actions[v_default] = actions[v_line]
-local function process(namespace,attribute,head)
+function firstlines.handler(head)
local start = head
local attr = nil
while start do
- attr = start[attribute]
+ attr = start[a_firstline]
if attr then
break
elseif start.id == glyph then