diff options
author | Karl Berry <karl@freefriends.org> | 2020-04-11 22:49:53 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-04-11 22:49:53 +0000 |
commit | 3243e3fe2fabf32acfb3a87d9167523ba1b4781c (patch) | |
tree | f8b0ba92a23dcfd30c78b794f0fa2156b94b7561 | |
parent | 5d4d5f0ea58c75088209b36c18b659e788ad0e8e (diff) |
ehhline (5apr20)
git-svn-id: svn://tug.org/texlive/trunk@54676 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf-dist/doc/latex/ehhline/README | 4 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/ehhline/ehhline.sty | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/latex/ehhline/README b/Master/texmf-dist/doc/latex/ehhline/README index b7b22c7fe3d..a12c8b41d30 100644 --- a/Master/texmf-dist/doc/latex/ehhline/README +++ b/Master/texmf-dist/doc/latex/ehhline/README @@ -2,8 +2,8 @@ Package ehhline extend \hhline command with a !{...} token, which allows build line with LaTeX command. Version 1.0 (2019-05-13): first public release +Version 1.1 (2020-04-04): bugfix – now |!{...}| works correctly - -Copyright (C) 2015-2019, Robert Ryszard Paciorek <rrp@opcode.eu.org> +Copyright (C) 2015-2020, Robert Ryszard Paciorek <rrp@opcode.eu.org> This is free software distributed under terms of The MIT License. diff --git a/Master/texmf-dist/tex/latex/ehhline/ehhline.sty b/Master/texmf-dist/tex/latex/ehhline/ehhline.sty index 4bfbe9e4d1d..fb06abc402b 100644 --- a/Master/texmf-dist/tex/latex/ehhline/ehhline.sty +++ b/Master/texmf-dist/tex/latex/ehhline/ehhline.sty @@ -1,4 +1,4 @@ -% Copyright (c) 2015-2019 Robert Ryszard Paciorek <rrp@opcode.eu.org> +% Copyright (c) 2015-2020 Robert Ryszard Paciorek <rrp@opcode.eu.org> % % MIT License % @@ -21,6 +21,7 @@ % SOFTWARE. % Version 1.0 (2019-05-13): first public release +% Version 1.1 (2020-04-04): bugfix – now |!{...}| works correctly \NeedsTeXFormat{LaTeX2e} @@ -33,10 +34,9 @@ \AtBeginDocument{ \patchcmd{\HH@loop}{\PackageWarning{hhline}}{% \ifx\@tempb!\def\next#1#2{% - \gdef\HH@height{\dimen\thr@@}% - \if@firstamp\@firstampfalse\else\HH@add{&\omit}\fi - \HH@add - {#2}% + \@tempswafalse\gdef\HH@height{\dimen\thr@@}% + \if@firstamp\@firstampfalse\else\HH@add{&\omit}\fi% + \HH@add{#2}% \HH@let!}\else \PackageWarning{hhline} }{}{\PackageWarning{ehhline}{Error patch HH@loop}} |