diff options
author | Karl Berry <karl@freefriends.org> | 2017-09-14 21:08:31 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-09-14 21:08:31 +0000 |
commit | a9d0cf6f0db1b207a93d9783f4f39654a5fda8c1 (patch) | |
tree | 61603332a2962e955cc89741911069fe82a864eb /Master/texmf-dist/source/latex/skrapport | |
parent | a6b5829b28e31661ed47531b08a01cb2864b290b (diff) |
skrapport (14sep17)
git-svn-id: svn://tug.org/texlive/trunk@45304 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/skrapport')
-rw-r--r-- | Master/texmf-dist/source/latex/skrapport/skrapport.tex | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Master/texmf-dist/source/latex/skrapport/skrapport.tex b/Master/texmf-dist/source/latex/skrapport/skrapport.tex index cfa502101d7..7d1eb847caa 100644 --- a/Master/texmf-dist/source/latex/skrapport/skrapport.tex +++ b/Master/texmf-dist/source/latex/skrapport/skrapport.tex @@ -99,7 +99,7 @@ % This is where the documentation begins \begin{document} % Change & version info - \version{0.12g} + \version{0.12h} \changes{0.01}{Initial version} \changes{0.03}{Removed \cs{rd} and \cs{id}} \changes{0.04}{Added \pkg{microtype} package} @@ -126,6 +126,7 @@ \changes{0.12e}{Replace usage of deprecated \pkg{expl3} macros (thanks for the heads-up, Joseph Wright!)} \changes{0.12f}{Fix incorrect usage of \pkg{xparse} macros} \changes{0.12g}{Track \pkg{expl3} changes (thanks to Joseph Wright)} + \changes{0.12h}{Fix incompatibilities with recent \pkg{expl3}} % Don't forget to update the version number and release date of % the package declaration in the implementation! @@ -634,7 +635,7 @@ \begin{MacroCode}{class} \RequirePackage{expl3,l3keys2e,xparse,xstring,etoolbox} \ProvidesExplClass{skrapport}% - {2017/01/08}{0.12g}{stylish report document class} + {2017/09/14}{0.12h}{stylish report document class} \end{MacroCode} \subsection{Messages} @@ -1410,16 +1411,18 @@ \end{MacroCode} \begin{macro*}{\@starttoc}[1] {Table of contents extension} + \changes{0.12h}{Replaced use of deprecated \cs{c_job_name_tl} + with \cs{c_sys_jobname_str}} \begin{MacroCode}{class} \RenewDocumentCommand\@starttoc{m}{ \group_begin: \dim_zero:N\parskip - \file_if_exist:nT{\c_job_name_tl.##1}{ - \file_input:n{\c_job_name_tl.##1} + \file_if_exist:nT{\c_sys_jobname_str.##1}{ + \file_input:n{\c_sys_jobname_str.##1} } \if@filesw \iow_new:c{tf@##1} - \iow_open:cn{tf@##1}{\c_job_name_tl.##1} + \iow_open:cn{tf@##1}{\c_sys_jobname_str.##1} \fi \@nobreakfalse \group_end: |