Skip to content

Commit

Permalink
tlsync luatex, uptex
Browse files Browse the repository at this point in the history
  • Loading branch information
edocevoli committed Feb 8, 2025
1 parent a1fd200 commit 908f3f5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MiKTeX Change Log

## 25.2 - 2025-02-07
## 25.2 - 2025-02-08

### Upgraded programs

Expand Down
2 changes: 1 addition & 1 deletion Programs/TeXAndFriends/luatex/source/font/tfmofm.c
Original file line number Diff line number Diff line change
Expand Up @@ -861,8 +861,8 @@ int read_tfm_info(internal_font_number f, const char *cnom, scaled s)
};
snprintf(err, 255, "Font scaled to 2048pt or higher");
tex_error(err, errhelp);
z = sw ;
}
z = sw ;
arith_error = saved_arith_error;
}
set_font_size(f, z);
Expand Down
2 changes: 1 addition & 1 deletion Programs/TeXAndFriends/luatex/source/luatex_svnversion.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef luatex_svn_revision_h
#define luatex_svn_revision_h
#define luatex_svn_revision 7657
#define luatex_svn_revision 7659
#endif
9 changes: 4 additions & 5 deletions Programs/TeXAndFriends/texjp/uptex/source/uptex-m.ch
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,8 @@ hangul_code(mid_kanji):
@x
begin c:=buffer[loc+1]; @+if c<@'200 then {yes we have an expanded char}
@y
begin if (cur_chr=buffer[loc+1]) and (cur_chr=buffer[loc+2]) and
((loc+6)<=limit) then
begin if (isinternalUPTEX) and ((loc+6)<=limit) and
(cur_chr=buffer[loc+1]) and (cur_chr=buffer[loc+2]) then
begin c:=buffer[loc+3]; cc:=buffer[loc+4];
cd:=buffer[loc+5]; ce:=buffer[loc+6];
if is_hex(c) and is_hex(cc) and is_hex(cd) and is_hex(ce) then
Expand Down Expand Up @@ -798,10 +798,9 @@ if cat=other_kchar then decr(k); {now |k| points to first nonletter}
until not((cat=letter)or(cat=kanji)or(cat=kana)or(cat=hangul)or(cat=modifier))or(k>limit);
{@@<If an expanded...@@>;}
if not((cat=letter)or(cat=kanji)or(cat=kana)or(cat=hangul)or(cat=modifier)) then begin
if (cat=mac_param)and(buffer2[k-1])and(multilenbuffchar(cur_chr)>1) then k:=k-multilenbuffchar(cur_chr)
if (buffer2[k-1]) then k:=k-multilenbuffchar(cur_chr)
else decr(k);
end;
if cat=other_kchar then k:=k-multilenbuffchar(cur_chr)+1; {now |k| points to first nonletter}
end; {now |k| points to first nonletter}
@z
@x
Expand Down
2 changes: 1 addition & 1 deletion miktex-version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## date based version
set(MIKTEX_YEAR_VERSION 2025)
set(MIKTEX_MONTH_VERSION 2)
set(MIKTEX_DAY_VERSION 7)
set(MIKTEX_DAY_VERSION 8)

set(MIKTEX_DAY_VERSION_IS_PATCH_VERSION FALSE)

Expand Down

0 comments on commit 908f3f5

Please sign in to comment.