summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-08-19 21:24:51 +0000
committerKarl Berry <karl@freefriends.org>2018-08-19 21:24:51 +0000
commitf94067db8245d94307cfb15701d3e58fda409f3b (patch)
treefba7916bf33a611ac2c77e1bc0a2a584cb63a29c /Master
parentf6408b3adabf40241c5fe8a2d62086af61c0da98 (diff)
etoolbox (19aug18)
git-svn-id: svn://tug.org/texlive/trunk@48436 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/latex/etoolbox/etoolbox.pdfbin224538 -> 224632 bytes
-rw-r--r--Master/texmf-dist/doc/latex/etoolbox/etoolbox.tex9
-rw-r--r--Master/texmf-dist/tex/latex/etoolbox/etoolbox.def2
-rw-r--r--Master/texmf-dist/tex/latex/etoolbox/etoolbox.sty4
4 files changed, 10 insertions, 5 deletions
diff --git a/Master/texmf-dist/doc/latex/etoolbox/etoolbox.pdf b/Master/texmf-dist/doc/latex/etoolbox/etoolbox.pdf
index e6f74dc9ec0..40403d833e9 100644
--- a/Master/texmf-dist/doc/latex/etoolbox/etoolbox.pdf
+++ b/Master/texmf-dist/doc/latex/etoolbox/etoolbox.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/etoolbox/etoolbox.tex b/Master/texmf-dist/doc/latex/etoolbox/etoolbox.tex
index 296b5d6e403..4764fd032d0 100644
--- a/Master/texmf-dist/doc/latex/etoolbox/etoolbox.tex
+++ b/Master/texmf-dist/doc/latex/etoolbox/etoolbox.tex
@@ -13,7 +13,7 @@
author={Philipp Lehman, Joseph Wright},
email={joseph.wright@morningstar2.co.uk},
revision={v2.5e},
- date={2018/02/11}}
+ date={2018/08/19}}
\hypersetup{%
pdftitle={The etoolbox Package},
@@ -763,7 +763,7 @@ Expands to \prm{true} if the \prm{string} is empty, and to \prm{false} otherwise
\cmditem{ifblank}{string}{true}{false}
-Expands to \prm{true} if the \prm{string} is blank (empty or spaces), and to \prm{false} otherwise. The \prm{string} is not expanded in the test.\footnote{This macro is based on code by Donald Arseneau.}
+Expands to \prm{true} if the \prm{string} is blank (empty or spaces), and to \prm{false} otherwise. The \prm{string} is not expanded in the test.
\cmditem{notblank}{string}{not true}{not false}
@@ -1297,6 +1297,11 @@ This revision history is a list of changes relevant to users of this package. Ch
\begin{changelog}
+\begin{release}{2.5f}{2018-08-18}
+\item Fix issue with \cmd{ifdefempty}, \cmd{ifcsempty}, \cs{ifdefvoid}
+ and \cmd{ifcsvoid} when applied to macros expanding to space tokens
+\end{release}
+
\begin{release}{2.5e}{2018-02-11}
\item More work on empty list separator in \cmd{DeclareListParser}
\end{release}
diff --git a/Master/texmf-dist/tex/latex/etoolbox/etoolbox.def b/Master/texmf-dist/tex/latex/etoolbox/etoolbox.def
index 422457fe1a2..4069146dcce 100644
--- a/Master/texmf-dist/tex/latex/etoolbox/etoolbox.def
+++ b/Master/texmf-dist/tex/latex/etoolbox/etoolbox.def
@@ -1,5 +1,5 @@
\ProvidesFile{etoolbox.def}
- [2018/02/11 v2.5e etoolbox debug messages (JAW)]
+ [2018/08/19 v2.5f etoolbox debug messages (JAW)]
\begingroup
\makeatletter
diff --git a/Master/texmf-dist/tex/latex/etoolbox/etoolbox.sty b/Master/texmf-dist/tex/latex/etoolbox/etoolbox.sty
index 3b561d27977..067d62b92d6 100644
--- a/Master/texmf-dist/tex/latex/etoolbox/etoolbox.sty
+++ b/Master/texmf-dist/tex/latex/etoolbox/etoolbox.sty
@@ -12,7 +12,7 @@
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{etoolbox}
- [2018/02/11 v2.5e e-TeX tools for LaTeX (JAW)]
+ [2018/08/19 v2.5f e-TeX tools for LaTeX (JAW)]
\begingroup
\@ifundefined{eTeXversion}
@@ -274,7 +274,7 @@
\def\etb@ifdefempty#1{%
\expandafter\expandafter
- \expandafter\ifblank
+ \expandafter\ifstrempty
\expandafter\expandafter
\expandafter{%
\expandafter\strip@prefix\meaning#1}}