summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/menukeys/menukeys.dtx
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/menukeys/menukeys.dtx')
-rw-r--r--Master/texmf-dist/source/latex/menukeys/menukeys.dtx17
1 files changed, 10 insertions, 7 deletions
diff --git a/Master/texmf-dist/source/latex/menukeys/menukeys.dtx b/Master/texmf-dist/source/latex/menukeys/menukeys.dtx
index 2e6d150fb43..7e6042c00dd 100644
--- a/Master/texmf-dist/source/latex/menukeys/menukeys.dtx
+++ b/Master/texmf-dist/source/latex/menukeys/menukeys.dtx
@@ -18,7 +18,7 @@
% \iffalse
%<package>\NeedsTeXFormat{LaTeX2e}[2009/01/01]
%<package>\ProvidesPackage{menukeys}
-%<package> [2012/04/05 v1.1a a package to format menus paths and shortcuts]
+%<package> [2012/04/11 v1.1b a package to format menus paths and shortcuts]
%
%<*driver>
\documentclass{ltxdoc}
@@ -676,8 +676,9 @@
% Hello World!
% \end{document}
% \end{verbatim}
-% \item Since \menukeys uses \pkg{catoptions} it may causes some problems
-% with orther packages because of \pkg{catoptions} option handling.
+% \item \changes{v1.1b}{2012/04/11}{Loade \pkg{biblatex} before \menukeys}
+% Since \menukeys uses \pkg{catoptions} it may causes some problems
+% with other packages, e.g. \pkg{biblatex}, because of \pkg{catoptions}' option handling.
% I recommend to load \menukeys as a later package in your preamble.
% \item Because \TikZ has some problems with \pkg{babels}'s active characters
% in |french|, \menukeys tries to fix this by calling |\NoAutoSpacing|
@@ -1397,6 +1398,8 @@
% \end{macro}
% \begin{macro}{\tw@define@menu@macro}
% \changes{v1.1a}{2012/04/05}{Added \cs{tw@babel@french@fix}}
+% \changes{v1.1b}{2012/04/06}{Replaced \cs{edef} by \cs{def} to
+% pevent expansion problems}
% Now we set up the internal command to create new menu macros.
% The list parsing code was essentially provided by Ahmed Musa at
% \url{http://tex.stackexchange.com/a/44989/4918}. Thank you very much!
@@ -1418,18 +1421,18 @@
\csdef{tw@parse@menu@list@\expandafter\@gobble\string#1}##1{%
\iflastindris
\ifnum\indrisnr=\@ne
- \edef\CurrentMenuElement{##1}%
+ \def\CurrentMenuElement{##1}%
\@nameuse{tw@style@#3@single}%
\else
- \edef\CurrentMenuElement{##1}%
+ \def\CurrentMenuElement{##1}%
\@nameuse{tw@style@#3@sep}\@nameuse{tw@style@#3@last}%
\fi
\else
\ifnum\indrisnr=\@ne
- \edef\CurrentMenuElement{##1}%
+ \def\CurrentMenuElement{##1}%
\@nameuse{tw@style@#3@first}%
\else
- \edef\CurrentMenuElement{##1}%
+ \def\CurrentMenuElement{##1}%
\@nameuse{tw@style@#3@sep}\@nameuse{tw@style@#3@mid}%
\fi
\fi