diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/l3experimental')
25 files changed, 106 insertions, 171 deletions
diff --git a/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.dtx b/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.dtx index 1771ac26668..3cb4fa08804 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.dtx @@ -46,32 +46,12 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % % \begin{documentation} % -% \section{Additions to \pkg{l3sys}: elapsed time} -% -% \begin{function}{\sys_gzero_timer:} -% \begin{syntax} -% \cs{sys_gzero_timer:} -% \end{syntax} -% Resets the timer to zero. -% \end{function} -% -% \begin{function}[EXP]{\sys_timer:} -% \begin{syntax} -% \cs{sys_timer:} -% \end{syntax} -% Expands to the current value of the engine's timer clock, a -% non-negative integer. In engines without clock support this expands -% to $0$ after an error. In \LuaTeX{} only the CPU time is measured, -% while in other engines real time is measured (including time waiting -% for user input). -% \end{function} -% % \section{Benchmark} % % \begin{variable}{\g_benchmark_duration_target_fp} @@ -83,22 +63,35 @@ % than this. % \end{variable} % -% \begin{function}{\benchmark_once:n} +% \begin{variable}{\g_benchmark_time_fp, \g_benchmark_ops_fp} +% These variables store the results of the most recently run benchmark. +% \cs{g_benchmark_time_fp} stores the time \TeX{} took in seconds, and +% \cs{g_benchmark_ops_fp} stores the estimated number of elementary +% operations. The latter is not set by +% \cs{benchmark_tic:}/\cs{benchmark_toc:}. +% \end{variable} +% +% \begin{function}{\benchmark_once:n, \benchmark_once_silent:n} % \begin{syntax} +% \cs{benchmark_once_silent:n} \Arg{code} % \cs{benchmark_once:n} \Arg{code} % \end{syntax} -% Prints to the terminal the time taken by \TeX{} to run the -% \meta{code}, and an estimated number of elementary operations. The +% Determines the time \cs{g_benchmark_time_fp} (in seconds) taken by +% \TeX{} to run the \meta{code}, and an estimated number +% \cs{g_benchmark_ops_fp} of elementary operations. In addition, +% \cs{benchmark_once:n} prints these values to the terminal. The % \meta{code} is run only once so the time may be quite inaccurate for % fast code. % \end{function} % -% \begin{function}{\benchmark:n} +% \begin{function}{\benchmark:n, \benchmark_silent:n} % \begin{syntax} % \cs{benchmark:n} \Arg{code} % \end{syntax} -% Prints to the terminal the time taken by \TeX{} to run the -% \meta{code}, and an estimated number of elementary operations. The +% Determines the time \cs{g_benchmark_time_fp} (in seconds) taken by +% \TeX{} to run the \meta{code}, and an estimated number +% \cs{g_benchmark_ops_fp} of elementary operations. In addition, +% \cs{benchmark:n} prints these values to the terminal. The % \meta{code} may be run many times and not within a group, thus code % with side-effects may cause problems. % \end{function} @@ -129,95 +122,10 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{l3benchmark}{2021-02-18}{} +\ProvidesExplPackage{l3benchmark}{2021-05-27}{} {L3 Experimental benchmarking} % \end{macrocode} % -% \subsection{Additions to \pkg{l3sys}: elapsed time} -% -% \begin{macrocode} -%<@@=sys> -% \end{macrocode} -% -% \begin{macro}[EXP]{\sys_timer:, \@@_elapsedtime:, \@@_resettimer:} -% \begin{macro}[EXP,pTF]{\sys_if_timer_exist:} -% In \LuaTeX{}, use emulation (see \pkg{l3luatex}), -% otherwise try to locate the primitive. The -% elapsed time will be available if this succeeds. -% \begin{macrocode} -\sys_if_engine_luatex:TF - { - \cs_new:Npn \@@_elapsedtime: { } - \cs_new:Npn \@@_resettimer: { } - \lua_now:n - { - local~gettimeofday = os.gettimeofday~ - local~epoch = gettimeofday() - os.clock()~ - local~write = tex.write~ - local~tointeger = math.tointeger~ - local~id = luatexbase.new_luafunction'@@_elapsedtime:' - lua.get_functions_table()[id] = function() - write(tointeger((gettimeofday() - epoch)*65536 // 1)) - end~ - token.set_lua('@@_elapsedtime:', id, 'global') - id = luatexbase.new_luafunction'@@_resettimer:' - lua.get_functions_table()[id] = function() - epoch = gettimeofday() - end~ - token.set_lua('@@_resettimer:', id, 'global', 'protected') - } - \cs_new:Npn \sys_timer: - { \@@_elapsedtime: } - } - { - \cs_if_exist:NT \tex_elapsedtime:D - { - \cs_new:Npn \sys_timer: - { \int_value:w \tex_elapsedtime:D } - } - } -\@@_const:nn { sys_if_timer_exist } - { \cs_if_exist_p:N \sys_timer: } -% \end{macrocode} -% \end{macro} -% \end{macro} -% -% \begin{macro}{\sys_gzero_timer:} -% Three case, and in each case we define \cs{sys_gzero_timer:}. -% \begin{macrocode} -\cs_if_exist:NTF \sys_timer: - { - \sys_if_engine_luatex:TF - { - \cs_new_protected:Npn \sys_gzero_timer: - { \@@_resettimer: } - } - { \cs_new_protected:Npn \sys_gzero_timer: { \tex_resettimer:D } } - } -% \end{macrocode} -% If the elapsed time cannot be accessed then we define user -% commands to produce errors. -% \begin{macrocode} - { - \__kernel_msg_new:nnnn { kernel } { no-elapsed-time } - { No~clock~detected~for~#1. } - { The~current~engine~provides~no~way~to~access~the~system~time. } - \cs_new_protected:Npn \sys_gzero_timer: - { - \__kernel_msg_error:nnn { kernel } { no-elapsed-time } - { \sys_gzero_timer: } - } - \cs_new:Npn \sys_timer: - { - \int_value:w - \__kernel_msg_expandable_error:nnn { kernel } { no-elapsed-time } - { \sys_timer: } - \c_zero_int - } - } -% \end{macrocode} -% \end{macro} -% % \subsection{Benchmarking code} % % \begin{macrocode} @@ -242,6 +150,8 @@ \cs_new_protected:Npn \benchmark_once:n #1 { \msg_error:nn { benchmark } { no-time } } \cs_new_eq:NN \benchmark:n \benchmark_once:n + \cs_new_eq:NN \benchmark_once_silent:n \benchmark_once:n + \cs_new_eq:NN \benchmark_silent:n \benchmark_once:n \cs_new_protected:Npn \benchmark_tic: { \msg_error:nn { benchmark } { no-time } } \cs_new_eq:NN \benchmark_toc: \benchmark_tic: @@ -337,13 +247,13 @@ % % \subsubsection{Main benchmarking} % -% \begin{variable}{\g_@@_time_fp, \g_@@_ops_fp} +% \begin{variable}{\g_benchmark_time_fp, \g_benchmark_ops_fp} % Functions such as \cs{benchmark:n} store the measured time in -% \cs{g_@@_time_fp} (in seconds) and the estimated number of -% operations in \cs{g_@@_ops_fp}. +% \cs{g_benchmark_time_fp} (in seconds) and the estimated number of +% operations in \cs{g_benchmark_ops_fp}. % \begin{macrocode} -\fp_new:N \g_@@_time_fp -\fp_new:N \g_@@_ops_fp +\fp_new:N \g_benchmark_time_fp +\fp_new:N \g_benchmark_ops_fp % \end{macrocode} % \end{variable} % @@ -381,7 +291,7 @@ % \end{macrocode} % \end{variable} % -% \begin{macro}{\benchmark_once:n} +% \begin{macro}{\benchmark_once:n, \benchmark_once_silent:n} % Convert the raw time from scaled seconds to seconds, and convert to % a number of operations. It is important to measure the elementary % operation before running the user code because both measurements use @@ -389,10 +299,15 @@ % \begin{macrocode} \cs_new_protected:Npn \benchmark_once:n #1 { + \benchmark_once_silent:n {#1} + \@@_display: + } +\cs_new_protected:Npn \benchmark_once_silent:n #1 + { \@@_measure_op: \@@_raw:nN {#1} \g_@@_time_int - \fp_gset:Nn \g_@@_time_fp { \g_@@_time_int / 65536 } - \@@_display: + \fp_gset:Nn \g_benchmark_time_fp { \g_@@_time_int / 65536 } + \fp_gset:Nn \g_benchmark_ops_fp { \g_benchmark_time_fp / \g_@@_one_op_fp } } % \end{macrocode} % \end{macro} @@ -402,10 +317,15 @@ % \begin{macrocode} \cs_new_protected:Npn \benchmark:n #1 { + \benchmark_silent:n {#1} + \@@_display: + } +\cs_new_protected:Npn \benchmark_silent:n #1 + { \@@_measure_op: \tl_gset:Nn \g_@@_code_tl {#1} \@@_aux: - \@@_display: + \fp_gset:Nn \g_benchmark_ops_fp { \g_benchmark_time_fp / \g_@@_one_op_fp } } % \end{macrocode} % \end{macro} @@ -460,7 +380,7 @@ } \prg_break_point: \int_compare:nNnT \g_@@_time_int < 3 { \int_gzero:N \g_@@_time_int } - \fp_gset:Nn \g_@@_time_fp + \fp_gset:Nn \g_benchmark_time_fp { \g_@@_time_int / \g_@@_repeat_int / 65536 } } \cs_new_protected:Npn \@@_run:N @@ -488,7 +408,7 @@ \tl_gset:Nn \g_@@_code_tl { \int_gadd:Nn \g_@@_duration_int { 0 } } \@@_aux: - \fp_gset:Nn \g_@@_one_op_fp { max(\g_@@_time_fp, 1e-16) } + \fp_gset:Nn \g_@@_one_op_fp { max(\g_benchmark_time_fp, 1e-16) } \int_gset:Nn \g_@@_duration_int { \fp_to_int:n { 65536 * \g_benchmark_duration_target_fp } } } @@ -519,11 +439,10 @@ % \begin{macrocode} \cs_new_protected:Npn \@@_display: { - \fp_gset:Nn \g_@@_ops_fp { \g_@@_time_fp / \g_@@_one_op_fp } \iow_term:x { - \@@_fp_to_tl:N \g_@@_time_fp \c_space_tl seconds \c_space_tl - ( \@@_fp_to_tl:N \g_@@_ops_fp \c_space_tl ops) + \@@_fp_to_tl:N \g_benchmark_time_fp \c_space_tl seconds \c_space_tl + ( \@@_fp_to_tl:N \g_benchmark_ops_fp \c_space_tl ops) } } % \end{macrocode} @@ -573,13 +492,13 @@ \cs_new_protected:Npn \@@_toc: { \int_gdecr:N \g_@@_tictoc_int - \fp_gset:Nn \g_@@_time_fp + \fp_gset:Nn \g_benchmark_time_fp { ( \sys_timer: - \l_@@_tictoc_pop_tl ) / 65536 } \iow_term:x { \@@_tictoc_prefix: TOC: \c_space_tl - \@@_fp_to_tl:N \g_@@_time_fp \c_space_tl s + \@@_fp_to_tl:N \g_benchmark_time_fp \c_space_tl s } } \msg_new:nnn { benchmark } { toc-first } diff --git a/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.ins b/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.ins index 4b72b69db33..bab7d5a5f5f 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.ins +++ b/Master/texmf-dist/source/latex/l3experimental/l3benchmark/l3benchmark.ins @@ -29,7 +29,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble diff --git a/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.dtx b/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.dtx index 686df60ccd4..fd7f59b562c 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.dtx @@ -42,7 +42,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % \begin{documentation} @@ -264,7 +264,7 @@ %<@@=bitset> % \end{macrocode} % \begin{macrocode} -\ProvidesExplPackage{l3bitset}{2021-02-18}{} +\ProvidesExplPackage{l3bitset}{2021-05-27}{} {L3 Experimental bitset support} % \end{macrocode} % A bitset is a string variable. diff --git a/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.ins b/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.ins index 1f693d29569..1d91118d90a 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.ins +++ b/Master/texmf-dist/source/latex/l3experimental/l3bitset/l3bitset.ins @@ -2,7 +2,7 @@ File: l3bitset.ins -Copyright (C) 2020 The LaTeX3 Project +Copyright (C) 2020,2021 The LaTeX3 Project It may be distributed and/or modified under the conditions of the LaTeX Project Public License (LPPL), either version 1.3c of this @@ -29,7 +29,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-boxes.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-boxes.dtx index 64bc0cfa646..cd3ac247443 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-boxes.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-boxes.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-layers.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-layers.dtx index f193ceb4d64..8f1fd9253b7 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-layers.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-layers.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-paths.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-paths.dtx index a846d4046a2..f0569e5603e 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-paths.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-paths.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-points.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-points.dtx index 70e088d0cf7..71633ca740e 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-points.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-points.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-scopes.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-scopes.dtx index 60792f27ed0..6fcb544eb65 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-scopes.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-scopes.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-softpath.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-softpath.dtx index 9d70d5d7e2c..fc7fac00db0 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-softpath.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-softpath.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-state.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-state.dtx index 105120a391d..046a3a79448 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-state.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-state.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-transforms.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-transforms.dtx index 839fce91a61..de39ce257d2 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-transforms.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw-transforms.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.dtx b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.dtx index 1b6cdd8ab9f..9a9e670cce6 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.dtx @@ -110,7 +110,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % @@ -1136,7 +1136,7 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{l3draw}{2021-02-18}{} +\ProvidesExplPackage{l3draw}{2021-05-27}{} {L3 Experimental core drawing support} % \end{macrocode} % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.ins b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.ins index ba54fc41322..e9d00167d51 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.ins +++ b/Master/texmf-dist/source/latex/l3experimental/l3draw/l3draw.ins @@ -29,7 +29,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble diff --git a/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.dtx b/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.dtx index 5b4144c062e..89a94100166 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.dtx @@ -46,7 +46,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % @@ -240,7 +240,7 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{l3graphics}{2021-02-18}{} +\ProvidesExplPackage{l3graphics}{2021-05-27}{} {L3 Experimental graphics inclusion support} % \end{macrocode} % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.ins b/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.ins index 92af3d8915a..612372f3435 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.ins +++ b/Master/texmf-dist/source/latex/l3experimental/l3graphics/l3graphics.ins @@ -27,7 +27,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble diff --git a/Master/texmf-dist/source/latex/l3experimental/l3str/l3str-format.dtx b/Master/texmf-dist/source/latex/l3experimental/l3str/l3str-format.dtx index 9b0cf4a5a4d..34ccffbb5b0 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3str/l3str-format.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3str/l3str-format.dtx @@ -48,7 +48,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % @@ -166,7 +166,7 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{l3str-format}{2021-02-18}{} +\ProvidesExplPackage{l3str-format}{2021-05-27}{} {L3 Experimental string formatting} % \end{macrocode} % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3str/l3str.ins b/Master/texmf-dist/source/latex/l3experimental/l3str/l3str.ins index 4c2b0df987c..9e264f7f8c9 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3str/l3str.ins +++ b/Master/texmf-dist/source/latex/l3experimental/l3str/l3str.ins @@ -29,7 +29,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble diff --git a/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.dtx b/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.dtx index 9a7920fe3f3..cf3e3f1405d 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.dtx @@ -46,12 +46,28 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % % \begin{documentation} % +% This module provides platform-neutral interfaces to system shell commands. +% These functions can only access the shell if a document is proceeded using +% \texttt{--shell-escape}, which allows \emph{unrestricted} access to command +% line functions. +% +% In general, arbitrary documents should \emph{not} be processed in this way, +% as shell escape could either accidentally or deliberately lead to unexpected +% side-effects. In that sense, they should be treated like any other arbitrary +% script: with caution. No attempt is made by the functions here to avoid +% injection of additional commands into the arguments. +% +% With the above security caveats in mind, these functions are provided for +% authors where a workflow scripting \emph{within} a \LaTeX{} document is +% preferable to using an external script. The latter would of course also have +% the ability to run arbitrary code. +% % \begin{function}[added = 2018-07-28]{\sys_shell_cp:nn} % \begin{syntax} % \cs{sys_shell_cp:nn} \Arg{source} \Arg{dest} @@ -135,7 +151,7 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{l3sys-shell}{2021-02-18}{} +\ProvidesExplPackage{l3sys-shell}{2021-05-27}{} {L3 Experimental system shell functions} % \end{macrocode} % diff --git a/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.ins b/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.ins index 025c282b726..3241bd08042 100644 --- a/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.ins +++ b/Master/texmf-dist/source/latex/l3experimental/l3sys-shell/l3sys-shell.ins @@ -29,7 +29,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble diff --git a/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.dtx b/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.dtx index 86d3add8ae5..f8f10fc0636 100644 --- a/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.dtx @@ -53,7 +53,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % @@ -672,7 +672,7 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{xcoffins}{2021-02-18}{} +\ProvidesExplPackage{xcoffins}{2021-05-27}{} {L3 Experimental design level coffins} % \end{macrocode} % diff --git a/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.ins b/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.ins index 218e38dec37..8ed25068004 100644 --- a/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.ins +++ b/Master/texmf-dist/source/latex/l3experimental/xcoffins/xcoffins.ins @@ -29,7 +29,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble diff --git a/Master/texmf-dist/source/latex/l3experimental/xgalley/l3galley.dtx b/Master/texmf-dist/source/latex/l3experimental/xgalley/l3galley.dtx index 1c7c9bd9418..8d0291d1b12 100644 --- a/Master/texmf-dist/source/latex/l3experimental/xgalley/l3galley.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/xgalley/l3galley.dtx @@ -61,7 +61,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % @@ -686,7 +686,7 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{l3galley}{2021-02-18}{} +\ProvidesExplPackage{l3galley}{2021-05-27}{} {L3 Experimental galley code} % \end{macrocode} % @@ -1803,10 +1803,10 @@ \bool_lazy_and:nnTF { \dim_compare_p:nNn \l_galley_total_left_margin_dim = \c_zero_dim } { \dim_compare_p:nNn \l_galley_total_right_margin_dim = \c_zero_dim } - { \tex_parshape:D 0 \exp_stop_f: } + { \tex_parshape:D \c_zero_int } { \tex_parshape:D - 1 \exp_stop_f: + \c_one_int \l_galley_total_left_margin_dim \l_galley_text_width_dim } @@ -2196,7 +2196,7 @@ \tex_displaywidowpenalties:D \int_eval:n { \clist_count:n {#1} + 1 } \exp_stop_f: \clist_map_function:nN {#1} \@@_set_aux:n - 0 \exp_stop_f: + \c_zero_int } \cs_generate_variant:Nn \galley_display_widow_penalties_set:n { V , v } \cs_new_protected:Npn \galley_widow_penalties_set:n #1 @@ -2204,7 +2204,7 @@ \tex_widowpenalties:D \int_eval:n { \clist_count:n {#1} + 1 } \exp_stop_f: \clist_map_function:nN {#1} \@@_set_aux:n - 0 \exp_stop_f: + \c_zero_int } \cs_generate_variant:Nn \galley_widow_penalties_set:n { V , v } \cs_new:Npn \@@_set_aux:n #1 { \int_eval:n {#1} ~ } @@ -2255,7 +2255,7 @@ \tex_clubpenalties:D \int_eval:n { \clist_count:n {#1} + 1 } \exp_stop_f: \clist_map_function:nN {#1} \@@_set_aux:n - 0 \exp_stop_f: + \c_zero_int \@@_calc_interline_penalties: } \cs_generate_variant:Nn \galley_display_club_penalties_set:n { V , v } @@ -2301,7 +2301,7 @@ \cs_new_protected:Npn \@@_set_interline_penalty:nn #1#2 { \tex_interlinepenalties:D - \tex_interlinepenalties:D 0 \exp_stop_f: + \tex_interlinepenalties:D \c_zero_int \int_step_function:nN {#1} \@@_set_interline_penalty_auxi:n \int_step_function:nnN { #1 + 1 } { \tex_interlinepenalties:D 0 - 1 } @@ -2357,7 +2357,7 @@ \@@_calc_interline_penalties_auxi:n \int_step_function:nnN { #2 + 1 } { #1 - 1 } \@@_calc_interline_penalties_auxii:n - \tex_interlinepenalties:D \tex_interlinepenalties:D 0 \exp_stop_f: + \tex_interlinepenalties:D \tex_interlinepenalties:D \c_zero_int } \cs_new:Npn \@@_calc_interline_penalties_auxi:n #1 { @@ -2373,7 +2373,7 @@ { \int_eval:n { - \tex_interlinepenalties:D \tex_interlinepenalties:D 0 \exp_stop_f: + \tex_interlinepenalties:D \tex_interlinepenalties:D \c_zero_int + 0 \clist_item:Nn \l_galley_club_penalties_clist {#1} - \tex_clubpenalties:D #1 ~ } @@ -2449,7 +2449,7 @@ % last value in the primitive array. % \begin{macrocode} \cs_new_protected:Npn \galley_interline_penalty: - { \int_value:w \tex_interlinepenalties:D \tex_interlinepenalties:D 0 \exp_stop_f: } + { \int_value:w \tex_interlinepenalties:D \tex_interlinepenalties:D \c_zero_int } % \end{macrocode} % \end{macro} % \end{macro} diff --git a/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.dtx b/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.dtx index 680e288fe37..f23d7c5f48b 100644 --- a/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.dtx +++ b/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.dtx @@ -44,7 +44,7 @@ % }^^A % } % -% \date{Released 2021-02-18} +% \date{Released 2021-05-27} % % \maketitle % @@ -731,7 +731,7 @@ % \end{macrocode} % % \begin{macrocode} -\ProvidesExplPackage{xgalley}{2021-02-18}{} +\ProvidesExplPackage{xgalley}{2021-05-27}{} {L3 Experimental galley} \RequirePackage{xtemplate,l3galley} % \end{macrocode} diff --git a/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.ins b/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.ins index 8b5690d0799..31acc29e00d 100644 --- a/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.ins +++ b/Master/texmf-dist/source/latex/l3experimental/xgalley/xgalley.ins @@ -29,7 +29,7 @@ license information is placed in the derived files. \fi -\input l3docstrip.tex +\input docstrip % \askforoverwritefalse \preamble |