From d42e3a436cd4a6fe6cfd8e3ab2cefbf5d020e5e1 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sat, 18 May 2013 16:43:18 +0200 Subject: add fallback for ``node.end_of_math()`` --- luaotfload.dtx | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'luaotfload.dtx') diff --git a/luaotfload.dtx b/luaotfload.dtx index 9ed00b5..25fd8f0 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -1496,6 +1496,16 @@ if tex.luatexversion < luatex_version then warning("LuaTeX v%.2f is old, v%.2f is recommended.", tex.luatexversion/100, luatex_version /100) + --- we install a fallback for older versions as a safety + if not node.end_of_math then + local math_t = node.id"math" + local traverse_nodes = node.traverse_id + node.end_of_math = function (n) + for n in traverse_nodes(math_t, n.next) do + return n + end + end + end end % \end{macrocode} -- cgit v1.2.3