X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=src%2Fltj-pretreat.lua;h=d0ea84da1be2d4bf6fe8a2244775ed82d39fcf03;hb=8fbe1d2f31602bacb8cb42633482a8587fbdfcd4;hp=d2b22fee9b8fc0c8a30cd90ffd18def8bf66ebba;hpb=4679b304375e2dc5614e5706a4ff01c1659bffa2;p=luatex-ja%2Fluatexja.git diff --git a/src/ltj-pretreat.lua b/src/ltj-pretreat.lua index d2b22fe..d0ea84d 100644 --- a/src/ltj-pretreat.lua +++ b/src/ltj-pretreat.lua @@ -39,21 +39,26 @@ local attr_orig_char = luatexbase.attributes['ltj@origchar'] ------------------------------------------------------------------------ -- MAIN PROCESS STEP 1: replace fonts ------------------------------------------------------------------------ -box_stack_level = 0 --- This is used in jfmglue.lua. +local wt local function suppress_hyphenate_ja(head) - local non_math, p = true, nil - for p in node_traverse(head) do - if p.id == id_glyph and non_math then + local non_math, p = true, head + wt = {} + while p do + local pid = p.id + if pid == id_glyph then if (has_attr(p, attr_icflag) or 0)<=0 and ltjc_is_ucs_in_japanese_char(p) then p.font = has_attr(p, attr_curjfnt) or p.font p.subtype = floor(p.subtype*0.5)*2 set_attr(p, attr_orig_char, p.char) end - elseif p.id == id_math then - non_math = (p.subtype ~= 0) + elseif pid == id_math then + p = node_next(p) -- skip math on + while p and p.id~=id_math do p = node_next(p) end + elseif pid == id_whatsit and p.subtype==sid_user and p.user_id==30112 then + wt[#wt+1] = p; head = node_remove(head, p) end + p = node_next(p) end lang.hyphenate(head) return head @@ -61,17 +66,11 @@ end -- mode: true iff this function is called from hpack_filter function set_box_stack_level(head, mode) - local box_set = false - local p = head - local cl = tex.currentgrouplevel + 1 - for p in node.traverse_id(id_whatsit, head) do - if p.subtype==sid_user and p.user_id==30112 then - local g = p - if mode and g.value==cl then box_set = true end - head, p = node_remove(head, g); node_free(g); break - end + local box_set, cl = 0, tex.currentgrouplevel + 1 + for _,p in pairs(wt) do + if mode and p.value==cl then box_set = 1 end; node_free(p) end - box_stack_level = tex_getcount('ltj@@stack') + (box_set and 1 or 0) + ltjs.report_stack_level(tex_getcount('ltj@@stack') + box_set) return head end