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

Changed char utf8word[(4 * MAX_WORD_LEN) + 1] = { 0 }; in char utf8word[(4 *...

Changed char utf8word[(4 * MAX_WORD_LEN) + 1] = { 0 }; in char utf8word[(4 * MAX_WORD_LEN) + 1] ; in function  void hnj_hyphenation(halfword head, halfword tail) (thanks to user202729@protonmail.com)
parent 97775f32
No related branches found
No related tags found
No related merge requests found
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] ;
in function void hnj_hyphenation(halfword head, halfword tail) (thanks to user202729@protonmail.com)
2024-05-11 Luigi Scarso <luigi.scarso@gmail.com>
* allow interactive deletion of \outer token, see https://tug.org/texmfbug/newbug.html#B142outer
......
......@@ -943,7 +943,7 @@ void hnj_hyphenation(halfword head, halfword tail)
int lchar, i;
struct tex_language *lang;
lang_variables langdata;
char utf8word[(4 * MAX_WORD_LEN) + 1] = { 0 };
char utf8word[(4 * MAX_WORD_LEN) + 1];
int wordlen = 0;
char *hy = utf8word;
char *replacement = NULL;
......
#ifndef luatex_svn_revision_h
#define luatex_svn_revision_h
#define luatex_svn_revision 7623
#define luatex_svn_revision 7624
#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