Skip to content
Snippets Groups Projects
Commit 8ac146cb authored by Luigi Scarso's avatar Luigi Scarso
Browse files

Fixed a missed lua_settop in lua_appendtovlist_callback() (thanks to Hironori KITAGAWA)

[[Split portion of a mixed commit.]]
parent 729fc6f7
No related branches found
No related tags found
No related merge requests found
2022-08-05 Luigi Scarso <luigi.scarso@gmail.com>
* Fixed a missed lua_settop in lua_appendtovlist_callback() (thanks to Hironori KITAGAWA)
2022-07-31 Luigi Scarso <luigi.scarso@gmail.com>
* Fixed loading .tex when --output-directory is enabled
......
......@@ -192,6 +192,7 @@ int lua_appendtovlist_callback(halfword box, int location, halfword prev_depth,
*next_depth = lua_roundnumber(Luas, -1);
*prev_set = 1;
}
lua_settop(Luas, s_top);
return 1;
}
......
#ifndef luatex_svn_revision_h
#define luatex_svn_revision_h
#define luatex_svn_revision 7535
#define luatex_svn_revision 7536
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment