[latex3-commits] [git/LaTeX3-latex3-latex3] box-ops: ConTeXt no longer uses unicode table (b74fa3a)
Joseph Wright
joseph.wright at morningstar2.co.uk
Sat Apr 6 09:41:32 CEST 2019
Repository : https://github.com/latex3/latex3
On branch : box-ops
Link : https://github.com/latex3/latex3/commit/b74fa3a72588fbe2b5778368c0dfdc0a6ea312bd
>---------------------------------------------------------------
commit b74fa3a72588fbe2b5778368c0dfdc0a6ea312bd
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Sat Apr 6 08:39:48 2019 +0100
ConTeXt no longer uses unicode table
>---------------------------------------------------------------
b74fa3a72588fbe2b5778368c0dfdc0a6ea312bd
l3kernel/CHANGELOG.md | 4 ++++
l3kernel/l3luatex.dtx | 6 +++++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/l3kernel/CHANGELOG.md b/l3kernel/CHANGELOG.md
index 111e27b..287354a 100644
--- a/l3kernel/CHANGELOG.md
+++ b/l3kernel/CHANGELOG.md
@@ -12,6 +12,10 @@ this project uses date-based 'snapshot' version identifiers.
- Moved box 'view' functions to stable
- Moved `\tl_if_single_token:n(TF)` to stable
+###
+
+- Support for ConTeXt from mid-December 2018
+
## [2019-03-26]
### Fixed
diff --git a/l3kernel/l3luatex.dtx b/l3kernel/l3luatex.dtx
index 2d0db7f..fee4f67 100644
--- a/l3kernel/l3luatex.dtx
+++ b/l3kernel/l3luatex.dtx
@@ -330,7 +330,11 @@ local os_date = os.date
local setcatcode = tex.setcatcode
local sprint = tex.sprint
local write = tex.write
-local utf8_char = unicode.utf8.char
+% \end{macrocode}
+%
+% Newer Con\TeX{}t releases replace the |unicode| library by |utf|.
+% \begin{macrocode}
+local utf8_char = (utf and utf.char) or unicode.utf8.char
% \end{macrocode}
%
% Deal with Con\TeX{}t: doesn't use |kpse| library.
More information about the latex3-commits
mailing list