diff options
author | Karl Berry <karl@freefriends.org> | 2019-09-29 21:12:31 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-09-29 21:12:31 +0000 |
commit | d562da77633756a85b1e9f8d36b06d394def49e5 (patch) | |
tree | 40b8ef7d15391a2e6b335fbf075d134ed939632a /Master/texmf-dist/tex/latex | |
parent | 268dff1b06a01bd6be5f1ae08216c0beff08336c (diff) |
algobox (29sep19)
git-svn-id: svn://tug.org/texlive/trunk@52204 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex')
-rw-r--r-- | Master/texmf-dist/tex/latex/algobox/algobox.sty | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/texmf-dist/tex/latex/algobox/algobox.sty b/Master/texmf-dist/tex/latex/algobox/algobox.sty index b8d65ad15fb..914b1707a7c 100644 --- a/Master/texmf-dist/tex/latex/algobox/algobox.sty +++ b/Master/texmf-dist/tex/latex/algobox/algobox.sty @@ -6,17 +6,17 @@ %% %% algobox.dtx (with options: `package') %% -%% File: algobox.dtx (C) Copyright 2016-2017 RIVAUD Julien +%% File: algobox.dtx (C) Copyright 2016-2019 RIVAUD Julien %% %% It may be distributed and/or modified under the conditions of the %% General Public License (GPL), either version 3 of this %% license or (at your option) any later version. \NeedsTeXFormat{LaTeX2e}[1995/12/01] -\RequirePackage{expl3}[2016/01/19] +\RequirePackage{expl3}[2018/06/19] \def\ExplFileName{algobox} \def\ExplFileDescription{Typeset Algobox programs} -\def\ExplFileDate{2017/09/04} -\def\ExplFileVersion{1.2a} +\def\ExplFileDate{2019/09/29} +\def\ExplFileVersion{1.3} \ProvidesExplPackage {\ExplFileName}{\ExplFileDate}{\ExplFileVersion}{\ExplFileDescription} \RequirePackage{xparse} @@ -207,7 +207,7 @@ } \NewDocumentCommand \__algobox_FINALGORITHME:w {} { - \int_while_do:nNnn \l__algobox_level_int > \c_zero { + \int_while_do:nNnn \l__algobox_level_int > \c_zero_int { \__algobox_unindent: } \__algobox_block:nn {structure} {FIN_ALGORITHME} @@ -273,7 +273,7 @@ } \NewDocumentCommand \__algobox_FONCTION:w { +u{\;} } { - \int_while_do:nNnn \l__algobox_level_int > \c_one { + \int_while_do:nNnn \l__algobox_level_int > \c_one_int { \__algobox_unindent: } \__algobox_indent:nn {fonctions} {FONCTION} @@ -312,7 +312,7 @@ } \cs_new_protected_nopar:Nn \__algobox_topstructure:nn { - \int_while_do:nNnn \l__algobox_level_int > \c_zero { + \int_while_do:nNnn \l__algobox_level_int > \c_zero_int { \__algobox_unindent: } \__algobox_indent:nn {#1} {#2} @@ -325,7 +325,7 @@ } \cs_new_protected_nopar:Nn \__algobox_funcstructure:nn { - \int_while_do:nNnn \l__algobox_level_int > \c_two { + \int_while_do:nNnn \l__algobox_level_int > { 2 } { \__algobox_unindent: } \bool_if:nTF {#2}{\__algobox_indent:nn}{\__algobox_block:nn} {fonctions} {#1} |