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

Handle token combiners in immediate assignments (H.Hagen). LuaTeX 1.19.0

parent a5c6acf2
Branches
Tags
No related merge requests found
2024-10-12 Luigi Scarso <luigi.scarso@gmail.com>
* Handle token combiners in immediate assignments (H.Hagen)
* LuaTeX 1.19.0
2024-09-01 Luigi Scarso <luigi.scarso@gmail.com>
* Changed char utf8word[(4 * MAX_WORD_LEN) + 1] = { 0 };
in char utf8word[(4 * MAX_WORD_LEN) + 1] ;
......
......@@ -32,9 +32,9 @@
stick to "0" upto "9" so users can expect a number represented as string.
*/
int luatex_version = 118;
int luatex_revision = '2';
const char *luatex_version_string = "1.18.2";
int luatex_version = 119;
int luatex_revision = '9';
const char *luatex_version_string = "1.19.0";
const char *engine_name = my_name;
#include <kpathsea/c-ctype.h>
......
#ifndef luatex_svn_revision_h
#define luatex_svn_revision_h
#define luatex_svn_revision 7626
#define luatex_svn_revision 7627
#endif
......@@ -882,7 +882,7 @@ void check_outer_validity(void)
halfword q;
if (suppress_outer_error_par)
return;
if ( OK_to_interrupt && (scanner_status != normal)) {
if (scanner_status != normal) {
deletions_allowed = false;
/*tex
......@@ -2907,7 +2907,10 @@ void conv_toks(void)
/*tex one-step do_assignment */
if (cur_cmd > max_non_prefixed_command) {
set_box_allowed = false;
prefixed_command();
if (cur_cmd == combine_toks_cmd)
combine_the_toks();
else
prefixed_command();
set_box_allowed = true;
}
/*tex done */
......@@ -2922,7 +2925,10 @@ void conv_toks(void)
break;
} else {
set_box_allowed = false;
prefixed_command();
if (cur_cmd == combine_toks_cmd)
combine_the_toks();
else
prefixed_command();
set_box_allowed = true;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment