OSDN Git Service

1cd7c98fbd1146173af598fe39053ad83bd49fe6
[luatex-ja/luatexja.git] / src / ltj-jfmglue.lua
1 --
2 -- luatexja/ltj-jfmglue.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfmglue',
6   date = '2015/01/13',
7   description = 'Insertion process of JFM glues and kanjiskip',
8 })
9 module('luatexja.jfmglue', package.seeall)
10 local err, warn, info, log = luatexbase .errwarinf(_NAME)
11
12 luatexja.load_module('base');      local ltjb = luatexja.base
13 luatexja.load_module('stack');     local ltjs = luatexja.stack
14 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
15 luatexja.load_module('direction'); local ltjd = luatexja.direction
16 luatexja.load_module('setwidth');      local ltjw = luatexja.setwidth
17 local pairs = pairs
18
19 local Dnode = node.direct or node
20
21 local nullfunc = function(n) return n end
22 local to_node = (Dnode ~= node) and Dnode.tonode or nullfunc
23 local to_direct = (Dnode ~= node) and Dnode.todirect or nullfunc
24
25 local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end
26 local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end
27 local getid = (Dnode ~= node) and Dnode.getid or function(n) return n.id end
28 local getfont = (Dnode ~= node) and Dnode.getfont or function(n) return n.font end
29 local getlist = (Dnode ~= node) and Dnode.getlist or function(n) return n.head end
30 local getchar = (Dnode ~= node) and Dnode.getchar or function(n) return n.char end
31 local getsubtype = (Dnode ~= node) and Dnode.getsubtype or function(n) return n.subtype end
32
33 local has_attr = Dnode.has_attribute
34 local set_attr = Dnode.set_attribute
35 local insert_before = Dnode.insert_before
36 local insert_after = Dnode.insert_after
37 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
38 local round = tex.round
39 local ltjd_make_dir_whatsit = ltjd.make_dir_whatsit
40 local ltjf_font_metric_table = ltjf.font_metric_table
41 local ltjf_find_char_class = ltjf.find_char_class
42 local node_new = Dnode.new
43 local node_copy = Dnode.copy
44 local node_remove = Dnode.remove
45 local node_tail = Dnode.tail
46 local node_free = Dnode.free
47 local node_end_of_math = Dnode.end_of_math
48
49 local id_glyph = node.id('glyph')
50 local id_hlist = node.id('hlist')
51 local id_vlist = node.id('vlist')
52 local id_rule = node.id('rule')
53 local id_ins = node.id('ins')
54 local id_mark = node.id('mark')
55 local id_adjust = node.id('adjust')
56 local id_disc = node.id('disc')
57 local id_whatsit = node.id('whatsit')
58 local id_math = node.id('math')
59 local id_glue = node.id('glue')
60 local id_kern = node.id('kern')
61 local id_penalty = node.id('penalty')
62
63 local id_glue_spec = node.id('glue_spec')
64 local id_jglyph    = 512 -- Japanese character
65 local id_box_like  = 256 -- vbox, shifted hbox
66 local id_pbox      = 257 -- already processed nodes (by \unhbox)
67 local id_pbox_w    = 258 -- cluster which consists of a whatsit
68 local sid_user = node.subtype('user_defined')
69 local lang_ja = token.create('ltj@@japanese')[2]
70
71 local sid_start_link = node.subtype('pdf_start_link')
72 local sid_start_thread = node.subtype('pdf_start_thread')
73 local sid_end_link = node.subtype('pdf_end_link')
74 local sid_end_thread = node.subtype('pdf_end_thread')
75
76 local ITALIC       = luatexja.icflag_table.ITALIC
77 local PACKED       = luatexja.icflag_table.PACKED
78 local KINSOKU      = luatexja.icflag_table.KINSOKU
79 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
80 local PROCESSED    = luatexja.icflag_table.PROCESSED
81 local IC_PROCESSED = luatexja.icflag_table.IC_PROCESSED
82 local BOXBDD       = luatexja.icflag_table.BOXBDD
83 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
84 local kanji_skip
85 local xkanji_skip
86 local table_current_stack
87 local list_dir
88 local capsule_glyph
89 local tex_dir
90 local attr_ablshift
91 local set_np_xspc_jachar
92 local set_np_xspc_jachar_hbox
93
94 local attr_icflag = luatexbase.attributes['ltj@icflag']
95 local ltjs_orig_char_table = ltjs.orig_char_table
96
97 local function get_attr_icflag(p)
98    return (has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG
99 end
100
101 -------------------- Helper functions
102
103 -- This function is called only for acquiring `special' characters.
104 local function fast_find_char_class(c,m)
105    return m.chars[c] or 0
106 end
107
108 -- 文字クラスの決定
109 local slow_find_char_class
110 do
111    local start_time_measure = ltjb.start_time_measure
112    local stop_time_measure = ltjb.stop_time_measure
113    slow_find_char_class = function (c, m, oc)
114       local cls = ltjf_find_char_class(oc, m)
115       if oc~=c and c and cls==0 then
116          return ltjf_find_char_class(c, m)
117       else
118          return cls
119       end
120    end
121 end
122
123 local zero_glue = node_new(id_glue)
124 spec_zero_glue = to_node(node_new(id_glue_spec))
125   -- must be public, since mentioned from other sources
126 local spec_zero_glue = to_direct(spec_zero_glue)
127 setfield(spec_zero_glue, 'width', 0)
128 setfield(spec_zero_glue, 'stretch', 0)
129 setfield(spec_zero_glue, 'shrink', 0)
130 setfield(spec_zero_glue, 'stretch_order', 0)
131 setfield(spec_zero_glue, 'shrink_order', 0)
132 setfield(zero_glue, 'spec', spec_zero_glue)
133
134 local function skip_table_to_spec(n)
135    local g, st = node_new(id_glue_spec), ltjs.fast_get_stack_skip(n)
136    setfield(g, 'width', st.width)
137    setfield(g, 'stretch', st.stretch)
138    setfield(g, 'shrink', st.shrink)
139    setfield(g, 'stretch_order', st.stretch_order)
140    setfield(g, 'shrink_order', st.shrink_order)
141    return g
142 end
143
144
145 -- penalty 値の計算
146 local function add_penalty(p,e)
147    local pp = getfield(p, 'penalty')
148    if pp>=10000 then
149       if e<=-10000 then setfield(p, 'penalty', 0) end
150    elseif pp<=-10000 then
151       if e>=10000 then  setfield(p, 'penalty', 0) end
152    else
153       pp = pp + e
154       if pp>=10000 then      setfield(p, 'penalty', 10000)
155       elseif pp<=-10000 then setfield(p, 'penalty', -10000)
156       else                   setfield(p, 'penalty', pp) end
157    end
158 end
159
160 -- 「異なる JFM」の間の調整方法
161 diffmet_rule = math.two_paverage
162 function math.two_add(a,b) return a+b end
163 function math.two_average(a,b) return (a+b)*0.5 end
164 function math.two_paverage(a,b) return (a+b)/2 end
165 function math.two_pleft(a,b) return a end
166 function math.two_pright(a,b) return b end
167
168 local head -- the head of current list
169
170 local Np, Nq, Bp
171 local widow_Bp, widow_Np -- \jcharwidowpenalty 挿入位置管理用
172
173 local non_ihb_flag -- JFM グルー挿入抑止用 flag
174 -- false: \inhibitglue 指定時 true: それ以外
175
176 -------------------- hlist 内の文字の検索
177
178 local first_char, last_char, find_first_char
179 do
180 local ltjd_glyph_from_packed = ltjd.glyph_from_packed
181 local function check_box(box_ptr, box_end)
182    local p = box_ptr; local found_visible_node = false
183    if not p then
184       find_first_char = false; last_char = nil
185       return true
186    end
187    while p and p~=box_end do
188       local pid = getid(p)
189       if pid==id_kern and getsubtype(p)==2 then
190          p = node_next(node_next(node_next(p))); pid = getid(p) -- p must be glyph_node
191        end
192       if pid==id_glyph then
193          repeat
194             if find_first_char then
195                first_char = p; find_first_char = false
196             end
197             last_char = p; found_visible_node = true; p=node_next(p)
198             if (not p) or p==box_end then
199                return found_visible_node
200             end
201          until getid(p)~=id_glyph
202          pid = getid(p) -- p must be non-nil
203       end
204       if pid==id_kern then
205          local pa = get_attr_icflag(p)
206          if pa==IC_PROCESSED then
207             -- do nothing
208          elseif getsubtype(p)==2 then
209             p = node_next(node_next(p));
210             -- Note that another node_next will be executed outside this if-statement.
211          else
212             found_visible_node = true
213             find_first_char = false; last_char = nil
214          end
215       elseif pid==id_hlist then
216          if PACKED == get_attr_icflag(p) then
217             local s = ltjd_glyph_from_packed(p)
218             if find_first_char then
219                first_char = s; find_first_char = false
220             end
221             last_char = s; found_visible_node = true
222          else
223             if getfield(p, 'shift')==0 then
224                if check_box(getlist(p), nil) then found_visible_node = true end
225             else
226                find_first_char = false; last_char = nil
227             end
228          end
229       elseif pid==id_math then
230          if find_first_char then
231             first_char = p; find_first_char = false
232          end
233          last_char = p; found_visible_node = true
234       elseif pid==id_rule and get_attr_icflag(p)==PACKED then
235          -- do nothing
236       elseif not (pid==id_ins   or pid==id_mark
237                   or pid==id_adjust or pid==id_whatsit
238                   or pid==id_penalty) then
239          found_visible_node = true
240          find_first_char = false; last_char = nil
241       end
242       p = node_next(p)
243    end
244    return found_visible_node
245 end
246
247 function check_box_high(Nx, box_ptr, box_end)
248    first_char = nil;  last_char = nil;  find_first_char = true
249    if check_box(box_ptr, box_end) then
250       local first_char = first_char
251       if first_char then
252          if getid(first_char)==id_glyph then
253             if getfield(first_char, 'lang') == lang_ja then
254                set_np_xspc_jachar_hbox(Nx, first_char)
255             else
256                set_np_xspc_alchar(Nx, getchar(first_char),first_char, 1)
257             end
258          else -- math_node
259             set_np_xspc_alchar(Nx, -1,first_char)
260          end
261       end
262    end
263    return last_char
264 end
265 end
266 -------------------- Np の計算と情報取得
267
268 luatexbase.create_callback("luatexja.jfmglue.whatsit_getinfo", "data",
269                            function (Np, lp, Nq)
270                               if Np.nuc then return Np
271                               else
272                                  return Np  -- your code
273                               end
274                            end)
275 luatexbase.create_callback("luatexja.jfmglue.whatsit_after", "data",
276                            function (stat, Nq, Np) return false end)
277
278 -- calc next Np
279 local calc_np 
280 do
281
282 local traverse = Dnode.traverse
283 local function set_attr_icflag_processed(p)
284    if get_attr_icflag(p)<= ITALIC then
285       set_attr(p, attr_icflag, PROCESSED)
286    end
287 end
288
289 local function check_next_ickern(lp)
290    if lp and getid(lp) == id_kern and ITALIC == get_attr_icflag(lp) then
291       set_attr(lp, attr_icflag, IC_PROCESSED)
292       Np.last = lp; return node_next(lp)
293    else
294       Np.last = Np.nuc; return lp
295    end
296 end
297
298 local function calc_np_pbox(lp, last)
299    local first, lpa, nc = (not Np.first), KINSOKU, nil
300    Np.first = Np.first or lp; Np.id = id_pbox
301    set_attr(lp, attr_icflag, get_attr_icflag(lp));
302    while lp ~=last and (lpa>=PACKED) and (lpa<BOXBDD) do
303       if getid(lp)==id_hlist or getid(lp)==id_vlist then
304          head, lp, nc = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm pbox')
305          Np.first = first and nc or Np.first
306       else
307          nc, lp = lp, node_next(lp)
308       end
309       first, lpa = false, (lp and has_attr(lp, attr_icflag) or 0)
310      -- get_attr_icflag() ではいけない!
311    end
312    Np.nuc = nc
313    lp = check_next_ickern(lp)
314    Np.last_char = check_box_high(Np, Np.first, lp)
315    return lp
316 end
317
318 local ltjw_apply_ashift_math = ltjw.apply_ashift_math
319 local ltjw_apply_ashift_disc = ltjw.apply_ashift_disc
320 local min, max = math.min, math.max
321 local function calc_np_aux_glyph_common(lp)
322    Np.nuc = lp
323    Np.first= (Np.first or lp)
324    if getfield(lp, 'lang') == lang_ja then
325       Np.id = id_jglyph
326       local m, cls = set_np_xspc_jachar(Np, lp)
327       local npi, npf
328       lp, head, npi, npf = capsule_glyph(lp, m, cls, head, tex_dir, lp)
329       Np.first = (Np.first~=Np.nuc) and Np.first or npf or npi
330       Np.nuc = npi
331       return true, check_next_ickern(lp);
332    else
333       Np.id = id_glyph
334       set_np_xspc_alchar(Np, getchar(lp), lp, 1)
335       -- loop
336       local first_glyph, last_glyph = lp
337       set_attr(lp, attr_icflag, PROCESSED); Np.last = lp
338       local y_adjust = has_attr(lp,attr_ablshift) or 0
339       local node_depth = getfield(lp, 'depth') + min(y_adjust, 0)
340       local adj_depth = (y_adjust>0) and (getfield(lp, 'depth') + y_adjust) or 0
341       setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
342       lp = node_next(lp)
343       for lx in traverse(lp) do
344          local lai = get_attr_icflag(lx)
345          if lx==last or  lai>=PACKED then
346             lp=lx; break
347          else
348             local lid = getid(lx)
349             if lid==id_glyph and getfield(lx, 'lang') ~= lang_ja then
350                -- 欧文文字
351                last_glyph = lx; set_attr(lx, attr_icflag, PROCESSED); Np.last = lx
352                y_adjust = has_attr(lx,attr_ablshift) or 0
353                node_depth = max(getfield(lx, 'depth') + min(y_adjust, 0), node_depth)
354                adj_depth = (y_adjust>0) and max(getfield(lx, 'depth') + y_adjust, adj_depth) or adj_depth
355                setfield(lx, 'yoffset', getfield(lx, 'yoffset') - y_adjust)
356             elseif lid==id_kern then
357                local ls = getsubtype(lx)
358                if ls==2 then -- アクセント用の kern
359                   set_attr(lx, attr_icflag, PROCESSED)
360                   lx = node_next(lx) -- lp: アクセント本体
361                   setfield(lx, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lx,attr_ablshift) or 0))
362                   lx = node_next(node_next(lx))
363                elseif ls==0  then
364                   Np.last = lx
365                elseif (ls==1 and lai==ITALIC) then
366                   Np.last = lx; set_attr(lx, attr_icflag, IC_PROCESSED)
367                else
368                   lp=lx; break
369                end
370             else
371                lp=lx; break
372             end
373          end
374       end
375       local r
376       if adj_depth>node_depth then
377             r = node_new(id_rule)
378             setfield(r, 'width', 0); setfield(r, 'height', 0)
379             setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir)
380             set_attr(r, attr_icflag, PROCESSED)
381       end
382       if last_glyph then
383          Np.last_char = last_glyph
384          if r then insert_after(head, first_glyph, r) end
385       else
386          local npn = Np.nuc
387          Np.last_char = npn
388          if r then
389             local nf, nc = getfont(npn), getchar(npn)
390             local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc]
391             if (ct.left_protruding or 0) == 0 then
392                head = insert_before(head, npn, r)
393                Np.first = (Np.first==npn) and r or npn
394             elseif (ct.right_protruding or 0) == 0 then
395                insert_after(head, npn, r); Np.last, lp = r, r
396             else
397                ltjb.package_warning_no_line(
398                   'luatexja',
399                   'Check depth of glyph node ' .. tostring(npn) .. '(font=' .. nf
400                      .. ', char=' .. nc .. '),    because its \\lpcode is ' .. tostring(ct.left_protruding)
401                      .. ' and its \\rpcode is ' .. tostring(ct.right_protruding)
402                ); node_free(r)
403             end
404          end
405       end
406       return true, lp
407    end
408 end
409 local calc_np_auxtable = {
410    [id_glyph] = calc_np_aux_glyph_common,
411    [id_hlist] = function(lp)
412       local op, flag
413       head, lp, op, flag = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm hlist')
414       set_attr(op, attr_icflag, PROCESSED)
415       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
416       if (flag or getfield(op, 'shift')~=0) then
417          Np.id = id_box_like
418       else
419          Np.id = id_hlist
420          Np.last_char = check_box_high(Np, getlist(op), nil)
421       end
422       return true, lp
423    end,
424    [id_vlist] =  function(lp)
425       local op
426       head, lp, op = ltjd_make_dir_whatsit(head, lp, list_dir, 'jfm:' .. getid(lp))
427       Np.first = Np.first or op; Np.last = op; Np.nuc = op;
428       Np.id = id_box_like;
429       return true, lp
430    end,
431    box_like = function(lp)
432       Np.first = Np.first or lp; Np.last = lp; Np.nuc = lp;
433       Np.id = id_box_like;
434       return true, node_next(lp)
435    end,
436    skip = function(lp)
437       set_attr(lp, attr_icflag, PROCESSED)
438       return false, node_next(lp)
439    end,
440    [id_whatsit] = function(lp)
441       local lps = getsubtype(lp)
442       if lps==sid_user then
443          if getfield(lp, 'user_id')==luatexja.userid_table.IHB then
444             local lq = node_next(lp);
445             head = node_remove(head, lp); node_free(lp); non_ihb_flag = false
446             return false, lq;
447          else
448             set_attr(lp, attr_icflag, PROCESSED)
449             luatexbase.call_callback("luatexja.jfmglue.whatsit_getinfo",
450                                      Np, lp, Nq)
451             if Np.nuc then
452                Np.id = id_pbox_w; Np.first = Np.nuc; Np.last = Np.nuc;
453                return true, node_next(lp)
454             else
455                return false, node_next(lp)
456             end
457          end
458       else
459          -- we do special treatment for these whatsit nodes.
460          if lps == sid_start_link or lps == sid_start_thread then
461             Np.first = lp
462          elseif lps == sid_end_link or lps == sid_end_thread then
463             Np.first, Nq.last = nil, lp;
464          end
465          set_attr(lp, attr_icflag, PROCESSED)
466          return false, node_next(lp)
467       end
468    end,
469    [id_math] = function(lp)
470       Np.first, Np.nuc = (Np.first or lp), lp;
471       set_attr(lp, attr_icflag, PROCESSED)
472       set_np_xspc_alchar(Np, -1, lp)
473       local end_math  = node_end_of_math(lp)
474       ltjw_apply_ashift_math(lp, end_math, attr_ablshift)
475       set_attr(end_math, attr_icflag, PROCESSED)
476       Np.last, Np.id = end_math, id_math;
477       return true, node_next(end_math);
478    end,
479    [id_glue] = function(lp)
480       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
481       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
482       return true, node_next(lp)
483    end,
484    [id_disc] = function(lp)
485       Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp;
486       Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED)
487       ltjw_apply_ashift_disc(lp, (list_dir==dir_tate), tex_dir)
488       Np.last_char = check_box_high(Np, getfield(lp, 'replace'), nil)
489       return true, node_next(lp)
490    end,
491    [id_kern] = function(lp)
492       if getsubtype(lp)==2 then
493          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
494          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
495          set_attr(lp, attr_icflag, PROCESSED); lp = node_next(lp)
496          set_attr(lp, attr_icflag, PROCESSED);
497          return calc_np_aux_glyph_common(lp)
498       else
499          Np.first = Np.first or lp
500          Np.id = id_kern; set_attr(lp, attr_icflag, PROCESSED)
501          Np.last = lp; return true, node_next(lp)
502       end
503    end,
504    [id_penalty] = function(lp)
505       Bp[#Bp+1] = lp; set_attr(lp, attr_icflag, PROCESSED)
506       return false, node_next(lp)
507    end,
508 }
509 calc_np_auxtable[id_rule]   = calc_np_auxtable.box_like
510 calc_np_auxtable[13]        = calc_np_auxtable.box_like
511 calc_np_auxtable[id_ins]    = calc_np_auxtable.skip
512 calc_np_auxtable[id_mark]   = calc_np_auxtable.skip
513 calc_np_auxtable[id_adjust] = calc_np_auxtable.skip
514
515 function calc_np(last, lp)
516    local k
517    -- We assume lp = node_next(Np.last)
518    Np, Nq, non_ihb_flag = Nq, Np, true
519    -- We clear `predefined' entries of Np before pairs() loop,
520    -- because using only pairs() loop is slower.
521    Np.post, Np.pre, Np.xspc = nil, nil, nil
522    Np.first, Np.id, Np.last, Np.met, Np.class= nil, nil, nil, nil
523    Np.auto_kspc, Np.auto_xspc, Np.char, Np.nuc = nil, nil, nil, nil
524    for k in pairs(Np) do Np[k] = nil end
525
526    for k = 1,#Bp do Bp[k] = nil end
527    while lp ~= last  do
528       local lpa = has_attr(lp, attr_icflag) or 0
529        -- unbox 由来ノードの検出
530       if lpa>=PACKED then
531          if lpa%PROCESSED_BEGIN_FLAG == BOXBDD then
532             local lq = node_next(lp)
533             head = node_remove(head, lp); node_free(lp); lp = lq
534          else
535             return calc_np_pbox(lp, last)
536          end -- id_pbox
537       else
538          k, lp = calc_np_auxtable[getid(lp)](lp)
539          if k then return lp end
540       end
541    end
542    Np=nil
543 end
544 end
545
546 -- extract informations from Np
547 -- We think that "Np is a Japanese character" if Np.met~=nil,
548 --            "Np is an alphabetic character" if Np.pre~=nil,
549 --            "Np is not a character" otherwise.
550 after_hlist = nil -- global
551 local after_alchar, extract_np
552 do
553   local PRE  = luatexja.stack_table_index.PRE
554   local POST = luatexja.stack_table_index.POST
555   local KCAT = luatexja.stack_table_index.KCAT
556   local XSP  = luatexja.stack_table_index.XSP
557   local dir_tate = luatexja.dir_table.dir_tate
558
559 -- 和文文字のデータを取得
560    local attr_jchar_class = luatexbase.attributes['ltj@charclass']
561    local attr_jchar_code = luatexbase.attributes['ltj@charcode']
562    local attr_autospc = luatexbase.attributes['ltj@autospc']
563    local attr_autoxspc = luatexbase.attributes['ltj@autoxspc']
564    --local ltjf_get_vert_glyph = ltjf.get_vert_glyph
565    function set_np_xspc_jachar(Nx, x)
566       local m = ltjf_font_metric_table[getfont(x)]
567       local c, c_glyph = ltjs_orig_char_table[x], getchar(x)
568       c = c or c_glyph
569       local cls = slow_find_char_class(c, m, c_glyph)
570       Nx.met, Nx.class, Nx.char = m, cls, c;
571       if cls~=0 then set_attr(x, attr_jchar_class, cls) end
572       if c~=c_glyph then set_attr(x, attr_jchar_code, c) end
573       Nx.pre  = table_current_stack[PRE + c]  or 0
574       Nx.post = table_current_stack[POST + c] or 0
575       Nx.xspc = table_current_stack[XSP  + c] or 3
576       Nx.kcat = table_current_stack[KCAT + c] or 0
577       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
578       return m, cls
579    end
580    function set_np_xspc_jachar_hbox(Nx, x)
581       local m = ltjf_font_metric_table[getfont(x)]
582       local c = has_attr(x, attr_jchar_code) or getchar(x)
583       Nx.met, Nx.char  = m, c; Nx.class = has_attr(x, attr_jchar_class) or 0;
584       Nx.pre  = table_current_stack[PRE + c]  or 0
585       Nx.post = table_current_stack[POST + c] or 0
586       Nx.xspc = table_current_stack[XSP  + c] or 3
587       Nx.kcat = table_current_stack[KCAT + c] or 0
588       Nx.auto_kspc, Nx.auto_xspc = (has_attr(x, attr_autospc)==1), (has_attr(x, attr_autoxspc)==1)
589    end
590
591 -- 欧文文字のデータを取得
592    local floor = math.floor
593    function set_np_xspc_alchar(Nx, c,x, lig)
594       if c~=-1 then
595          local f = (lig ==1) and nullfunc or node_tail
596          local xc, xs = getfield(x, 'components'), getsubtype(x)
597          while xc and xs and xs%4>=2 do
598             x = f(xc); xc, xs = getfield(x, 'components'), getsubtype(x)
599          end
600          c = getchar(x)
601          Nx.pre  = table_current_stack[PRE + c]  or 0
602          Nx.post = table_current_stack[POST + c] or 0
603          Nx.xspc = table_current_stack[XSP  + c] or 3
604       else
605          Nx.pre, Nx.post = 0, 0
606          Nx.xspc = table_current_stack[XSP - 1] or 3
607       end
608       Nx.met = nil
609       Nx.auto_xspc = (has_attr(x, attr_autoxspc)==1)
610    end
611    local set_np_xspc_alchar = set_np_xspc_alchar
612
613    -- change the information for the next loop
614    -- (will be done if Nx is an alphabetic character or a hlist)
615    after_hlist = function (Nx)
616       local s = Nx.last_char
617       if s then
618          if getid(s)==id_glyph then
619             if getfield(s, 'lang') == lang_ja then
620                set_np_xspc_jachar_hbox(Nx, s)
621             else
622                set_np_xspc_alchar(Nx, getchar(s), s, 2)
623             end
624          else
625             set_np_xspc_alchar(Nx, -1, s)
626          end
627       else
628          Nx.pre, Nx.met = nil, nil
629       end
630    end
631
632    after_alchar = function (Nx)
633       local x = Nx.last_char
634       return set_np_xspc_alchar(Nx, getchar(x), x, 2)
635    end
636
637 end
638
639 -------------------- 最下層の処理
640
641 -- change penalties (or create a new penalty, if needed)
642 local function handle_penalty_normal(post, pre, g)
643    local a = (pre or 0) + (post or 0)
644    if #Bp == 0 then
645       if (a~=0 and not(g and getid(g)==id_kern)) then
646          local p = node_new(id_penalty)
647          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
648          setfield(p, 'penalty', a)
649          head = insert_before(head, Np.first, p)
650          Bp[1]=p;
651          set_attr(p, attr_icflag, KINSOKU)
652       end
653    else for _, v in pairs(Bp) do add_penalty(v,a) end
654    end
655 end
656
657 local function handle_penalty_always(post, pre, g)
658    local a = (pre or 0) + (post or 0)
659    if #Bp == 0 then
660       if not (g and getid(g)==id_glue) or a~=0 then
661          local p = node_new(id_penalty)
662          if a<-10000 then a = -10000 elseif a>10000 then a = 10000 end
663          setfield(p, 'penalty', a)
664          head = insert_before(head, Np.first, p)
665          Bp[1]=p
666          set_attr(p, attr_icflag, KINSOKU)
667       end
668    else for _, v in pairs(Bp) do add_penalty(v,a) end
669    end
670 end
671
672 local function handle_penalty_suppress(post, pre, g)
673    local a = (pre or 0) + (post or 0)
674    if #Bp == 0 then
675       if g and getid(g)==id_glue then
676          local p = node_new(id_penalty)
677          setfield(p, 'penalty', 10000); head = insert_before(head, Np.first, p)
678          Bp[1]=p
679          set_attr(p, attr_icflag, KINSOKU)
680       end
681    else for _, v in pairs(Bp) do add_penalty(v,a) end
682    end
683 end
684
685 -- 和文文字間の JFM glue を node 化
686 local function new_jfm_glue(m, bc, ac)
687 -- bc, ac: char classes
688    local g, d = m.char_type[bc][ac], 0
689    local n
690    if g then
691       n,d = node_copy(g[2]), g[3]
692       if g[1] then
693          local f = node_new(id_glue)
694          set_attr(f, attr_icflag, g[4])
695          setfield(f, 'spec', n)
696          return f, d
697       end
698    end
699    return n, d
700 end
701
702 -- Nq.last (kern w) .... (glue/kern g) Np.first
703 local function real_insert(g)
704    if g then
705       head  = insert_before(head, Np.first, g)
706       Np.first = g
707    end
708 end
709
710
711 -------------------- 和文文字間空白量の決定
712
713 -- get kanjiskip
714 local get_kanjiskip
715 local get_kanjiskip_normal, get_kanjiskip_jfm
716 do
717    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
718    local KANJI_SKIP_JFM   = luatexja.icflag_table.KANJI_SKIP_JFM
719    get_kanjiskip_normal = function ()
720       if Np.auto_kspc or Nq.auto_kspc then
721          return node_copy(kanji_skip)
722       else
723          local g = node_copy(zero_glue)
724          set_attr(g, attr_icflag, KANJI_SKIP)
725          return g
726       end
727    end
728
729    get_kanjiskip_jfm = function ()
730       local g
731       if Np.auto_kspc or Nq.auto_kspc then
732          g = node_new(id_glue); --copy_attr(g, Nq.nuc)
733          local gx = node_new(id_glue_spec);
734          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
735          local pm, qm = Np.met, Nq.met
736          local bk = qm.kanjiskip or {0, 0, 0}
737          if (pm.char_type==qm.char_type) and (qm.var==pm.var) then
738             setfield(gx, 'width', bk[1])
739             setfield(gx, 'stretch', bk[2])
740             setfield(gx, 'shrink', bk[3])
741          else
742             local ak = pm.kanjiskip or {0, 0, 0}
743             setfield(gx, 'width', round(diffmet_rule(bk[1], ak[1])))
744             setfield(gx, 'stretch', round(diffmet_rule(bk[2], ak[2])))
745             setfield(gx, 'shrink', -round(diffmet_rule(-bk[3], -ak[3])))
746          end
747          setfield(g, 'spec', gx)
748       else
749          g =  node_copy(zero_glue)
750       end
751       set_attr(g, attr_icflag, KANJI_SKIP_JFM)
752       return g
753    end
754 end
755
756 local calc_ja_ja_aux
757 do
758    local bg_ag = 2*id_glue - id_glue
759    local bg_ak = 2*id_glue - id_kern
760    local bk_ag = 2*id_kern - id_glue
761    local bk_ak = 2*id_kern - id_kern
762
763    calc_ja_ja_aux = function (gb,ga, db, da)
764       local rbb, rab = 0.5*(1-db), 0.5*(1-da) -- 「前の文字」由来のグルーの割合
765       local rba, raa = 0.5*(1+db), 0.5*(1+da) -- 「前の文字」由来のグルーの割合
766       if diffmet_rule ~= math.two_pleft and diffmet_rule ~= math.two_pright
767           and diffmet_rule ~= math.two_paverage then
768          rbb, rab, rba, raa = 1,0,0,1
769       end
770       if not gb then
771          if ga then
772             gb = node_new(id_kern); setfield(gb, 'kern', 0)
773          else return nil end
774       elseif not ga then
775          ga = node_new(id_kern); setfield(ga, 'kern', 0)
776       end
777
778       local k = 2*getid(gb) - getid(ga)
779       if k == bg_ag then
780          local bs, as = getfield(gb, 'spec'), getfield(ga, 'spec')
781          -- 両方とも glue.
782          local bd, ad = getfield(bs, 'width'), getfield(as, 'width')
783          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
784          bd, ad = getfield(bs, 'stretch'), getfield(as, 'stretch')
785          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
786          bd, ad = getfield(bs, 'shrink'), getfield(as, 'shrink')
787          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd - rba*ad, -rab*bd - raa*ad)))
788          node_free(ga)
789          return gb
790       elseif k == bk_ak then
791          -- 両方とも kern.
792          local bd, ad = getfield(gb, 'kern'), getfield(ga, 'kern')
793          setfield(gb, 'kern', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
794          node_free(ga)
795          return gb
796       elseif k == bk_ag then
797          local as = getfield(ga, 'spec')
798          -- gb: kern, ga: glue
799          local bd, ad = getfield(gb, 'kern'), getfield(as, 'width')
800          setfield(as, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
801          ad = getfield(as, 'stretch')
802          setfield(bs, 'stretch', round(diffmet_rule(rba*ad, raa*ad)))
803          ad = getfield(as, 'shrink')
804          setfield(bs, 'shrink', -round(diffmet_rule(-rba*ad, -raa*ad)))
805          node_free(gb)
806          return ga
807       else
808          local bs = getfield(gb, 'spec')
809          -- gb: glue, ga: kern
810          local bd, ad = getfield(bs, 'width'), getfield(ga, 'kern')
811          setfield(bs, 'width', round(diffmet_rule(rbb*bd + rba*ad, rab*bd + raa*ad)))
812          bd = getfield(bs, 'stretch')
813          setfield(bs, 'stretch', round(diffmet_rule(rbb*bd, rab*bd)))
814          bd = getfield(bs, 'shrink')
815          setfield(bs, 'shrink', -round(diffmet_rule(-rbb*bd, -rab*bd)))
816          node_free(ga)
817          return gb
818       end
819    end
820 end
821
822 local function calc_ja_ja_glue()
823    local qm, pm = Nq.met, Np.met
824    if (qm.char_type==pm.char_type) and (qm.var==pm.var) then
825       return new_jfm_glue(qm, Nq.class, Np.class)
826    else
827       local npn, nqn = Np.nuc, Nq.nuc
828       local gb, db = new_jfm_glue(qm, Nq.class,
829                                   slow_find_char_class(Np.char,
830                                                        qm, getchar(npn)))
831       local ga, da = new_jfm_glue(pm,
832                                   slow_find_char_class(Nq.char,
833                                                        pm, getchar(nqn)),
834                                   Np.class)
835       return calc_ja_ja_aux(gb, ga, db, da);
836    end
837 end
838
839 -------------------- 和欧文間空白量の決定
840
841 -- get xkanjiskip
842 local get_xkanjiskip
843 local get_xkanjiskip_normal, get_xkanjiskip_jfm
844 do
845    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
846    local XKANJI_SKIP_JFM   = luatexja.icflag_table.XKANJI_SKIP_JFM
847    get_xkanjiskip_normal = function (Nn)
848       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
849          return node_copy(xkanji_skip)
850       else
851          local g = node_copy(zero_glue)
852          set_attr(g, attr_icflag, XKANJI_SKIP)
853          return g
854       end
855    end
856    get_xkanjiskip_jfm = function (Nn)
857       local g
858       if (Nq.xspc>=2) and (Np.xspc%2==1) and (Nq.auto_xspc or Np.auto_xspc) then
859          g = node_new(id_glue)
860          local gx = node_new(id_glue_spec);
861          setfield(gx, 'stretch_order', 0); setfield(gx, 'shrink_order', 0)
862          local bk = Nn.met.xkanjiskip or {0, 0, 0}
863          setfield(gx, 'width', bk[1])
864          setfield(gx, 'stretch', bk[2])
865          setfield(gx, 'shrink', bk[3])
866          setfield(g, 'spec', gx)
867       else
868          g = node_copy(zero_glue)
869       end
870       set_attr(g, attr_icflag, XKANJI_SKIP_JFM)
871       return g
872    end
873 end
874
875 -------------------- 隣接した「塊」間の処理
876
877 local function get_OA_skip()
878    local pm = Np.met
879    return new_jfm_glue(pm,
880                        fast_find_char_class((Nq.id == id_math and -1 or 'jcharbdd'), pm), Np.class)
881 end
882 local function get_OB_skip()
883    local qm = Nq.met
884    return new_jfm_glue(qm, Nq.class,
885                        fast_find_char_class((Np.id == id_math and -1 or'jcharbdd'), qm))
886 end
887
888 -- (anything) .. jachar
889 local function handle_np_jachar(mode)
890    local qid = Nq.id
891    if qid==id_jglyph or ((qid==id_pbox or qid==id_pbox_w) and Nq.met) then
892        local g = non_ihb_flag and calc_ja_ja_glue() or get_kanjiskip() -- M->K
893       handle_penalty_normal(Nq.post, Np.pre, g); real_insert(g)
894    elseif Nq.met then  -- qid==id_hlist
895       local g = non_ihb_flag and get_OA_skip() or get_kanjiskip() -- O_A->K
896       handle_penalty_normal(0, Np.pre, g); real_insert(g)
897    elseif Nq.pre then
898       local g = non_ihb_flag and get_OA_skip() or get_xkanjiskip(Np) -- O_A->X
899       handle_penalty_normal((qid==id_hlist and 0 or Nq.post), Np.pre, g); real_insert(g)
900    else
901       local g = non_ihb_flag and get_OA_skip() -- O_A
902       if qid==id_glue then handle_penalty_normal(0, Np.pre, g)
903       elseif qid==id_kern then handle_penalty_suppress(0, Np.pre, g)
904       else handle_penalty_always(0, Np.pre, g)
905       end
906       real_insert(g)
907    end
908    if mode and Np.kcat%2~=1 then
909       widow_Np.first, widow_Bp, Bp = Np.first, Bp, widow_Bp
910    end
911 end
912
913
914 -- jachar .. (anything)
915 local function handle_nq_jachar()
916     if Np.pre then
917       local g = non_ihb_flag and get_OB_skip() or get_xkanjiskip(Nq) -- O_B->X
918       handle_penalty_normal(Nq.post, (Np.id==id_hlist and 0 or Np.pre), g); real_insert(g)
919    else
920       local g =non_ihb_flag and  get_OB_skip() -- O_B
921       if Np.id==id_glue then handle_penalty_normal(Nq.post, 0, g)
922       elseif Np.id==id_kern then handle_penalty_suppress(Nq.post, 0, g)
923       else handle_penalty_always(Nq.post, 0, g)
924       end
925       real_insert(g)
926    end
927 end
928
929 -- (anything) .. (和文文字で始まる hlist)
930 local function handle_np_ja_hlist()
931    local qid = Nq.id
932    if qid==id_jglyph or ((qid==id_pbox or Nq.id == id_pbox_w) and Nq.met) then
933       local g = non_ihb_flag and get_OB_skip() or get_kanjiskip() -- O_B->K
934       handle_penalty_normal(Nq.post, 0, g); real_insert(g)
935    elseif Nq.met then  -- Nq.id==id_hlist
936       local g = get_kanjiskip() -- K
937       handle_penalty_suppress(0, 0, g); real_insert(g)
938    elseif Nq.pre then
939       local g = get_xkanjiskip(Np) -- X
940       handle_penalty_suppress(0, 0, g); real_insert(g)
941    end
942 end
943
944 -- (和文文字で終わる hlist) .. (anything)
945 local function handle_nq_ja_hlist()
946    if Np.pre then
947       local g = get_xkanjiskip(Nq) -- X
948       handle_penalty_suppress(0, 0, g); real_insert(g)
949    end
950 end
951
952
953 -- Nq が前側のクラスタとなることによる修正
954 do
955    local adjust_nq_aux = {
956       [id_glyph] = function() after_alchar(Nq) end, -- after_alchar(Nq)
957       [id_hlist]  = function() after_hlist(Nq) end,
958       [id_pbox]  = function() after_hlist(Nq) end,
959       [id_disc]  = function() after_hlist(Nq) end,
960       [id_pbox_w]  = function()
961                         luatexbase.call_callback("luatexja.jfmglue.whatsit_after",
962                                                  false, Nq, Np)
963                      end,
964    }
965
966    function adjust_nq()
967       local x = adjust_nq_aux[Nq.id]
968       if x then x()  end
969    end
970 end
971
972
973 -------------------- 開始・終了時の処理
974 do
975
976 -- リスト末尾の処理
977 local JWP  = luatexja.stack_table_index.JWP
978 local function handle_list_tail(mode)
979    adjust_nq(); Np = Nq
980    if mode then
981       -- the current list is to be line-breaked.
982       -- Insert \jcharwidowpenalty
983       Bp = widow_Bp; Np = widow_Np
984       if Np.first then
985          handle_penalty_normal(0,
986                                table_current_stack[JWP] or 0)
987       end
988    else
989       -- the current list is the contents of a hbox
990       local npi, pm = Np.id, Np.met
991       if npi == id_jglyph or (npi==id_pbox and pm) then
992          local g = new_jfm_glue(pm, Np.class, fast_find_char_class('boxbdd', pm))
993          if g then
994             set_attr(g, attr_icflag, BOXBDD)
995             head = insert_after(head, Np.last, g)
996          end
997       end
998    end
999 end
1000
1001 -- リスト先頭の処理
1002 local function handle_list_head(par_indented)
1003    local npi, pm = Np.id, Np.met
1004    if npi ==  id_jglyph or (npi==id_pbox and pm) then
1005       if non_ihb_flag then
1006          local g = new_jfm_glue(pm, fast_find_char_class(par_indented, pm), Np.class)
1007          if g then
1008             set_attr(g, attr_icflag, BOXBDD)
1009             if getid(g)==id_glue and #Bp==0 then
1010                local h = node_new(id_penalty)
1011                setfield(h, 'penalty', 10000); set_attr(h, attr_icflag, BOXBDD)
1012             end
1013             head = insert_before(head, Np.first, g)
1014          end
1015       end
1016    end
1017 end
1018
1019 -- initialize
1020 -- return value: (the initial cursor lp), (last node)
1021 local init_var
1022 do
1023    local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
1024    local XKANJI_SKIP   = luatexja.icflag_table.XKANJI_SKIP
1025    local KSK  = luatexja.stack_table_index.KSK
1026    local XSK  = luatexja.stack_table_index.XSK
1027    local dir_yoko = luatexja.dir_table.dir_yoko
1028    local dir_tate = luatexja.dir_table.dir_tate
1029    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
1030    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
1031    init_var = function (mode,dir)
1032       -- 1073741823: max_dimen
1033       Bp, widow_Bp, widow_Np = {}, {}, {first = nil}
1034       table_current_stack = ltjs.table_current_stack
1035
1036       list_dir = ltjs.list_dir or dir_yoko
1037       local is_dir_tate = list_dir==dir_tate
1038       capsule_glyph = is_dir_tate and ltjw.capsule_glyph_tate or ltjw.capsule_glyph_yoko
1039       attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
1040
1041       tex_dir = dir or 'TLT'
1042       kanji_skip = node_new(id_glue)
1043       setfield(kanji_skip, 'spec', skip_table_to_spec(KSK))
1044       set_attr(kanji_skip, attr_icflag, KANJI_SKIP)
1045       get_kanjiskip = (getfield(getfield(kanji_skip, 'spec'), 'width') == 1073741823)
1046          and get_kanjiskip_jfm or get_kanjiskip_normal
1047
1048       xkanji_skip = node_new(id_glue)
1049       setfield(xkanji_skip, 'spec', skip_table_to_spec(XSK))
1050       set_attr(xkanji_skip, attr_icflag, XKANJI_SKIP)
1051       get_xkanjiskip = (getfield(getfield(xkanji_skip, 'spec'), 'width') == 1073741823)
1052          and get_xkanjiskip_jfm or get_xkanjiskip_normal
1053
1054       Np = {
1055          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1056          first=nil, id=nil, last=nil, met=nil, nuc=nil,
1057          post=nil, pre=nil, xspc=nil,
1058       }
1059       Nq = {
1060          auto_kspc=nil, auto_xspc=nil, char=nil, class=nil,
1061          first=nil, id=nil, last=nil, met=nil, nuc=nil,
1062          post=nil, pre=nil, xspc=nil,
1063       }
1064       if mode then
1065          -- the current list is to be line-breaked:
1066          -- hbox from \parindent is skipped.
1067          local lp, par_indented, lpi, lps  = head, 'boxbdd', getid(head), getsubtype(head)
1068          while lp and ((lpi==id_whatsit and lps~=sid_user)
1069                        or ((lpi==id_hlist) and (lps==3))) do
1070             if (lpi==id_hlist) and (lps==3) then
1071                Np.char, par_indented = 'parbdd', 'parbdd'
1072                Np.width = getfield(lp, 'width')
1073             end
1074             lp=node_next(lp); lpi, lps = getid(lp), getsubtype(lp) end
1075          return lp, node_tail(head), par_indented
1076       else
1077          return head, nil, 'boxbdd'
1078       end
1079    end
1080 end
1081
1082 local tex_set_attr = tex.setattribute
1083 local function cleanup(mode)
1084    -- adjust attr_icflag for avoiding error
1085    tex_set_attr('global', attr_icflag, 0)
1086    node_free(kanji_skip); node_free(xkanji_skip)
1087    if mode then
1088       local h = node_next(head)
1089       if getid(h) == id_penalty and getfield(h, 'penalty') == 10000 then
1090          h = node_next(h)
1091          if getid(h) == id_glue and getsubtype(h) == 15 and not node_next(h) then
1092             return false
1093          end
1094       end
1095    end
1096    return head
1097 end
1098 -------------------- 外部から呼ばれる関数
1099
1100 -- main interface
1101 function main(ahead, mode, dir)
1102    if not ahead then return ahead end
1103    head = ahead;
1104    local lp, last, par_indented = init_var(mode,dir)
1105    lp = calc_np(last, lp)
1106    if lp then
1107       handle_list_head(par_indented)
1108       lp = calc_np(last,lp); while Np do
1109          adjust_nq();
1110          local pid, pm = Np.id, Np.met
1111          -- 挿入部
1112          if pid == id_jglyph then
1113             handle_np_jachar(mode)
1114          elseif pm then
1115             if pid==id_hlist then handle_np_ja_hlist()
1116             else handle_np_jachar() end
1117          elseif Nq.met then
1118             if Nq.id==id_hlist then handle_nq_ja_hlist()
1119             else handle_nq_jachar() end
1120          end
1121          lp = calc_np(last,lp)
1122       end
1123       handle_list_tail(mode)
1124    end
1125    return cleanup(mode)
1126 end
1127 end
1128
1129 do
1130    local IHB  = luatexja.userid_table.IHB
1131    local BPAR = luatexja.userid_table.BPAR
1132    local node_prev = (Dnode ~= node) and Dnode.getprev or node.prev
1133    local node_write = Dnode.write
1134
1135    -- \inhibitglue
1136    function create_inhibitglue_node()
1137       local tn = node_new(id_whatsit, sid_user)
1138       setfield(tn, 'user_id', IHB)
1139       setfield(tn, 'type', 100)
1140       setfield(tn, 'value', 1)
1141       node_write(tn)
1142    end
1143
1144    -- Node for indicating beginning of a paragraph
1145    -- (for ltjsclasses)
1146    function create_beginpar_node()
1147       local tn = node_new(id_whatsit, sid_user)
1148       setfield(tn, 'user_id', BPAR)
1149       setfield(tn, 'type', 100)
1150       setfield(tn, 'value', 1)
1151       node_write(tn)
1152    end
1153
1154    local function whatsit_callback(Np, lp, Nq)
1155       if Np and Np.nuc then return Np
1156       elseif Np and getfield(lp, 'user_id') == BPAR then
1157          Np.first = lp; Np.nuc = lp; Np.last = lp
1158          return Np
1159       end
1160    end
1161
1162     local function whatsit_after_callback(s, Nq, Np)
1163        if not s and getfield(Nq.nuc, 'user_id') == BPAR then
1164          local x, y = node_prev(Nq.nuc), Nq.nuc
1165          Nq.first, Nq.nuc, Nq.last = x, x, x
1166          if Np then
1167             if Np.met then
1168                Nq.class = fast_find_char_class('parbdd', Np.met)
1169             end
1170             Nq.met = Np.met; Nq.pre = 0; Nq.post = 0; Nq.xspc = 0
1171             Nq.auto_xspc = false
1172          end
1173          head = node_remove(head, y)
1174          node_free(y)
1175       end
1176       return s
1177    end
1178
1179    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_getinfo", whatsit_callback,
1180                               "luatexja.beginpar.np_info", 1)
1181    luatexbase.add_to_callback("luatexja.jfmglue.whatsit_after", whatsit_after_callback,
1182                               "luatexja.beginpar.np_info_after", 1)
1183
1184 end