summaryrefslogtreecommitdiff
path: root/tex/context/base/typo-fln.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2013-09-21 10:50:00 +0200
committerHans Hagen <pragma@wxs.nl>2013-09-21 10:50:00 +0200
commit85394692ebd63aa509cbf14b4ad2f2fa8da08710 (patch)
tree78b945ead295a0bf17b1232179516d38c92fd1b2 /tex/context/base/typo-fln.lua
parenta9777f06d45c449536da4ad1580444427de66e69 (diff)
downloadcontext-85394692ebd63aa509cbf14b4ad2f2fa8da08710.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