summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-03-18 22:33:30 +0000
committerKarl Berry <karl@freefriends.org>2013-03-18 22:33:30 +0000
commitb54daf0cabfecd2fa131f6b45be1d60a3e407071 (patch)
tree27593491239791891988059b637883644ab5d720 /Master/texmf-dist/source
parent475f7084e5da1822a284e68a4212bf535be7f3ca (diff)
mh (17mar13)
git-svn-id: svn://tug.org/texlive/trunk@29420 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r--Master/texmf-dist/source/latex/mh/flexisym.dtx10
-rw-r--r--Master/texmf-dist/source/latex/mh/mathtools.dtx2
2 files changed, 7 insertions, 5 deletions
diff --git a/Master/texmf-dist/source/latex/mh/flexisym.dtx b/Master/texmf-dist/source/latex/mh/flexisym.dtx
index 7b4df2f5abc..587210590e5 100644
--- a/Master/texmf-dist/source/latex/mh/flexisym.dtx
+++ b/Master/texmf-dist/source/latex/mh/flexisym.dtx
@@ -182,7 +182,7 @@ and the derived files
% \begin{macrocode}
%<*package>
\RequirePackage{expl3}[2009/08/05]
-\ProvidesExplPackage{flexisym}{2010/09/17}{0.97b}{Make math characters macros}
+\ProvidesExplPackage{flexisym}{2013/03/16}{0.97c}{Make math characters macros}
\edef\do{%
\noexpand\AtEndOfPackage{%
@@ -224,20 +224,20 @@ and the derived files
% positions
% \begin{macrocode}
\cs_set_protected:Nn \math_char:NNn {
- \tex_mathchar:D \int_eval:w " #1#2#3 \int_eval_end:
+ \tex_mathchar:D \__int_eval:w " #1#2#3 \__int_eval_end:
}
% \end{macrocode}
% Delimiters and radicals are similar except here we have both small
% and large variant. Radicals have no class.
% \begin{macrocode}
\cs_set_protected:Nn \math_delimiter:NNnNn {
- \tex_delimiter:D \int_eval:w " #1#2#3#4#5 \int_eval_end:
+ \tex_delimiter:D \__int_eval:w " #1#2#3#4#5 \__int_eval_end:
}
\cs_set_protected:Nn \math_radical:NnNn {
- \tex_radical:D \int_eval:w " #1#2#3#4 \int_eval_end:
+ \tex_radical:D \__int_eval:w " #1#2#3#4 \__int_eval_end:
}
\cs_set_protected:Nn \math_accent:NNnn {
- \tex_mathaccent:D \int_eval:w " #1 #2 #3 \int_eval_end: {#4}
+ \tex_mathaccent:D \__int_eval:w " #1 #2 #3 \__int_eval_end: {#4}
}
\let\sumlimits\displaylimits
diff --git a/Master/texmf-dist/source/latex/mh/mathtools.dtx b/Master/texmf-dist/source/latex/mh/mathtools.dtx
index 8f3414345b9..94b422bf3ef 100644
--- a/Master/texmf-dist/source/latex/mh/mathtools.dtx
+++ b/Master/texmf-dist/source/latex/mh/mathtools.dtx
@@ -2803,12 +2803,14 @@ and the derived files
% We let \cs{eqref} write the label to the \file{aux} file, which is
% read at the beginning of the next run. Then we print the equation
% number as usual.
+% \changes{v1.14}{2013/03/07}{It was not really robust}
% \begin{macrocode}
\def\MT_extended_eqref:n #1{
\protected@write\@auxout{}
{\string\MT@newlabel{#1}}
\textup{\MT_prev_tagform:n {\ref{#1}}}
}
+\EQ_MakeRobust\MT_extended_eqref:n
% \end{macrocode}
% \end{macro}
%