summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/texmf-dist/doc/latex/iexec/iexec.pdfbin107917 -> 107811 bytes
-rw-r--r--Master/texmf-dist/doc/latex/iexec/iexec.tex4
-rw-r--r--Master/texmf-dist/tex/latex/iexec/iexec.sty18
3 files changed, 11 insertions, 11 deletions
diff --git a/Master/texmf-dist/doc/latex/iexec/iexec.pdf b/Master/texmf-dist/doc/latex/iexec/iexec.pdf
index ad364b67dee..8bae3e0881b 100644
--- a/Master/texmf-dist/doc/latex/iexec/iexec.pdf
+++ b/Master/texmf-dist/doc/latex/iexec/iexec.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/iexec/iexec.tex b/Master/texmf-dist/doc/latex/iexec/iexec.tex
index 4929b996313..cc58780c239 100644
--- a/Master/texmf-dist/doc/latex/iexec/iexec.tex
+++ b/Master/texmf-dist/doc/latex/iexec/iexec.tex
@@ -1,6 +1,6 @@
% (The MIT License)
%
-% Copyright (c) 2021 Yegor Bugayenko
+% Copyright (c) 2021-2022 Yegor Bugayenko
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the 'Software'), to deal
@@ -27,7 +27,7 @@
\usepackage{ffcode}
\title{\ff{iexec}: \LaTeX{} Package \\ for Inputable Shell Executions}
\author{Yegor Bugayenko}
-\date{0.4.0 2021/08/01}
+\date{0.4.1 2022/01/02}
\begin{document}
\pagenumbering{gobble}
\raggedbottom
diff --git a/Master/texmf-dist/tex/latex/iexec/iexec.sty b/Master/texmf-dist/tex/latex/iexec/iexec.sty
index 2f8cd15bb0d..a96f41b0046 100644
--- a/Master/texmf-dist/tex/latex/iexec/iexec.sty
+++ b/Master/texmf-dist/tex/latex/iexec/iexec.sty
@@ -1,6 +1,6 @@
% (The MIT License)
%
-% Copyright (c) 2021 Yegor Bugayenko
+% Copyright (c) 2021-2022 Yegor Bugayenko
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the 'Software'), to deal
@@ -21,16 +21,16 @@
% SOFTWARE.
\NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{iexec}[2021/08/01 0.4.0 Inputable Shell Executions]
+\ProvidesPackage{iexec}[2022/01/02 0.4.1 Inputable Shell Executions]
\RequirePackage{shellesc}
\RequirePackage{xkeyval}
-\newif\iftrace
-\DeclareOptionX{trace}{\tracetrue}
-\ProcessOptionsX\relax
+\makeatletter\newif\ifiexec@trace
+\DeclareOptionX{trace}{\iexec@tracetrue}
+\ProcessOptionsX\relax\makeatother
-\newcommand\iexec[2][iexec.tmp]{%
+\makeatletter\newcommand\iexec[2][iexec.tmp]{%
\ifnum\pdfshellescape=1\else
\PackageError{iexec}{You must run latex with --shell-escape option}{}
\fi
@@ -40,10 +40,10 @@
\let\{\@charlb%
\let\}\@charrb%
\ShellEscape{#2 > #1}%
- \message{iexec executed shell command: [#2 > #1]}%
+ \message{iexec: [#2 > #1]}%
\endgroup%
\input{#1}%
- \iftrace\else\ShellEscape{rm #1}\fi%
-}
+ \ifiexec@trace\else\ShellEscape{rm #1}\fi%
+}\makeatother
\endinput