summaryrefslogtreecommitdiff
path: root/tex/context/base/typo-dig.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2012-11-12 18:20:22 +0200
committerMarius <mariausol@gmail.com>2012-11-12 18:20:22 +0200
commit2f3268bacfd74738c63390f4b9e3f2266ef29694 (patch)
tree2f4aa0adff045fb3dad67b2fb1e6f427ff7815d7 /tex/context/base/typo-dig.lua
parent049b3c22a9db6218bf934d77356cc2d397fe5078 (diff)
downloadcontext-2f3268bacfd74738c63390f4b9e3f2266ef29694.tar.gz
beta 2012.11.12 17:10
Diffstat (limited to 'tex/context/base/typo-dig.lua')
-rw-r--r--tex/context/base/typo-dig.lua62
1 files changed, 31 insertions, 31 deletions
diff --git a/tex/context/base/typo-dig.lua b/tex/context/base/typo-dig.lua
index f11b3b0e3..a3a0feb3e 100644
--- a/tex/context/base/typo-dig.lua
+++ b/tex/context/base/typo-dig.lua
@@ -19,56 +19,56 @@ local report_digits = logs.reporter("typesetting","digits")
local nodes, node = nodes, node
-local has_attribute = node.has_attribute
-local unset_attribute = node.unset_attribute
-local set_attribute = node.set_attribute
-local hpack_node = node.hpack
-local traverse_id = node.traverse_id
-local insert_before = node.insert_before
-local insert_after = node.insert_after
+local has_attribute = node.has_attribute
+local unset_attribute = node.unset_attribute
+local set_attribute = node.set_attribute
+local hpack_node = node.hpack
+local traverse_id = node.traverse_id
+local insert_node_before = node.insert_before
+local insert_node_after = node.insert_after
-local texattribute = tex.attribute
-local unsetvalue = attributes.unsetvalue
+local texattribute = tex.attribute
+local unsetvalue = attributes.unsetvalue
-local nodecodes = nodes.nodecodes
-local glyph_code = nodecodes.glyph
+local nodecodes = nodes.nodecodes
+local glyph_code = nodecodes.glyph
-local nodepool = nodes.pool
-local tasks = nodes.tasks
+local nodepool = nodes.pool
+local tasks = nodes.tasks
-local new_glue = nodepool.glue
+local new_glue = nodepool.glue
-local fonthashes = fonts.hashes
-local fontdata = fonthashes.identifiers
-local chardata = fonthashes.characters
-local quaddata = fonthashes.quads
+local fonthashes = fonts.hashes
+local fontdata = fonthashes.identifiers
+local chardata = fonthashes.characters
+local quaddata = fonthashes.quads
-local v_reset = interfaces.variables.reset
+local v_reset = interfaces.variables.reset
-local charbase = characters.data
-local getdigitwidth = fonts.helpers.getdigitwidth
+local charbase = characters.data
+local getdigitwidth = fonts.helpers.getdigitwidth
-typesetters = typesetters or { }
-local typesetters = typesetters
+typesetters = typesetters or { }
+local typesetters = typesetters
-typesetters.digits = typesetters.digits or { }
-local digits = typesetters.digits
+typesetters.digits = typesetters.digits or { }
+local digits = typesetters.digits
-digits.actions = { }
-local actions = digits.actions
+digits.actions = { }
+local actions = digits.actions
-local a_digits = attributes.private("digits")
-digits.attribute = a_digits
+local a_digits = attributes.private("digits")
+digits.attribute = a_digits
-- at some point we can manipulate the glyph node so then i need
-- to rewrite this then
function nodes.aligned(head,start,stop,width,how)
if how == "flushright" or how == "middle" then
- head, start = insert_before(head,start,new_glue(0,65536,65536))
+ head, start = insert_node_before(head,start,new_glue(0,65536,65536))
end
if how == "flushleft" or how == "middle" then
- head, stop = insert_after(head,stop,new_glue(0,65536,65536))
+ head, stop = insert_node_after(head,stop,new_glue(0,65536,65536))
end
local prv, nxt = start.prev, stop.next
start.prev, stop.next = nil, nil