X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=src%2Fltj-math.lua;h=df28db036fb064351847a04ce82ee8877c88e960;hb=1379fbf6aae445cdce3906e7b83cc1c8550e78d5;hp=04b5b9286b1ce24819b2fdc40f73141f78e00802;hpb=ea79dea334a110317b0d43a697a3403f55f8abfa;p=luatex-ja%2Fluatexja.git diff --git a/src/ltj-math.lua b/src/ltj-math.lua index 04b5b92..df28db0 100644 --- a/src/ltj-math.lua +++ b/src/ltj-math.lua @@ -13,7 +13,7 @@ local Dnode = node.direct or node local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end local getid = (Dnode ~= node) and Dnode.getid or function(n) return n.id end -local getlist = (Dnode ~= node) and Dnode.getlist or function(n) return n.head end +-- getlist cannot be used for sub_box nodes. Use instead λp. getfield(p, 'head') local getchar = (Dnode ~= node) and Dnode.getchar or function(n) return n.char end local nullfunc = function(n) return n end @@ -90,9 +90,9 @@ local function conv_jchar_to_hbox(head, sty) else sty = 2 end end - end + end return head -end +end local MJT = luatexja.stack_table_index.MJT local MJS = luatexja.stack_table_index.MJS @@ -100,14 +100,14 @@ local MJSS = luatexja.stack_table_index.MJSS local capsule_glyph_math = ltjw.capsule_glyph_math local is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char_direct -conv_jchar_to_hbox_A = +conv_jchar_to_hbox_A = function (p, sty) if not p then return nil else local pid = getid(p) if pid == id_sub_mlist then - if getlist(p) then - setfield(p, 'head', conv_jchar_to_hbox(getlist(p), sty)) + if getfield(p, 'head') then + setfield(p, 'head', conv_jchar_to_hbox(getfield(p, 'head'), sty)) end elseif pid == id_mchar then local fam = has_attr(p, attr_jfam) or -1 @@ -118,7 +118,7 @@ function (p, sty) local q = node_new(id_sub_box) local r = node_new(id_glyph); setfield(r, 'next', nil) setfield(r, 'char', pc); setfield(r, 'font', f); setfield(r, 'subtype', 256) - local k = has_attr(r,attr_ykblshift) or 0 + local k = has_attr(r,attr_ykblshift) or 0 set_attr(r, attr_ykblshift, 0) -- ltj-setwidth 内で実際の位置補正はおこなうので,補正量を退避 local met = ltjf_font_metric_table[f] @@ -127,15 +127,15 @@ function (p, sty) set_attr(r, attr_yablshift, k) end end - elseif pid == id_sub_box and getlist(p) then + elseif pid == id_sub_box and getfield(p, 'head') then -- \hbox で直に与えられた内容は上下位置を補正する必要はない - set_attr(getlist(p), attr_icflag, PROCESSED) + set_attr(getfield(p, 'head'), attr_icflag, PROCESSED) end end return p end -luatexbase.add_to_callback('mlist_to_hlist', +luatexbase.add_to_callback('mlist_to_hlist', function (n, display_type, penalties) local head = to_node(conv_jchar_to_hbox(to_direct(n), 0)) head = node.mlist_to_hlist(head, display_type, penalties)