<div dir="ltr"><div>I just compiled the latest LuaTeX at r6317 and some code that worked earlier doesn’t anymore.</div><div><br></div><div>This fails with error message  (font_params is defined earlier): "glue (spec) expected"</div><div>    </div><div>     n = node.new("glue", 13)<br></div><div>     node.setglue(n, font_params.space, font_params.space_stretch, font_params.space_shrink)<br></div><div><br></div><div>but changing to this works:<div><br></div><div><div>      n = node.new("glue", 13)</div><div>      n.width = font_params.space</div><div>      n.stretch = font_params.space_stretch</div><div>      n.shrink = font_params.space_shrink</div></div></div><div><br></div><div>I am using the node.setglue function as instructed the manual. Am I doing something wrong?</div><div><br></div><div>Deepak</div></div>