summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/memoir/memoir.dtx
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/memoir/memoir.dtx')
-rw-r--r--Master/texmf-dist/source/latex/memoir/memoir.dtx34
1 files changed, 19 insertions, 15 deletions
diff --git a/Master/texmf-dist/source/latex/memoir/memoir.dtx b/Master/texmf-dist/source/latex/memoir/memoir.dtx
index c53f51c29ed..2af74dfca56 100644
--- a/Master/texmf-dist/source/latex/memoir/memoir.dtx
+++ b/Master/texmf-dist/source/latex/memoir/memoir.dtx
@@ -71,6 +71,8 @@
% \changes{v1.6180339a}{2008/08/07}{Removed extra space in footnotes}
% \changes{v1.6180339c}{2009/01/21}{Minor bug fixes and extensions}
% \changes{v1.6180339c}{2009/01/25}{A few more}
+% \changes{v1.6180339d}{2009/02/04}{Fixed a bug in the running
+% head/foot widths}
%
% \def\dtxfile{memoir.dtx}
%
@@ -99,6 +101,7 @@
% \def\fileversion{v1.6180339a} \def\filedate{2008/08/07}
% \def\fileversion{v1.6180339c} \def\filedate{2009/01/21}
% \def\fileversion{v1.6180339c} \def\filedate{2009/01/25}
+% \def\fileversion{v1.6180339d} \def\filedate{2009/02/04}
% \title{The LaTeX \Lpack{memoir} class for configurable book
% typesetting: Source code\thanks{This
% file (\texttt{\dtxfile}) has version number \fileversion, last revised
@@ -319,7 +322,7 @@
% Announce the name, option files and version for LaTeX2e files:
% \begin{macrocode}
%<class>\ProvidesClass{memoir}%
-%<class> [2009/01/25 v1.6180339c configurable book, report, article document class]
+%<class> [2009/02/04 v1.6180339d configurable book, report, article document class]
%<9pt>\ProvidesFile{mem9.clo}%
%<9pt> [2008/01/30 v0.4 memoir class 9pt size option]
%<10pt>\ProvidesFile{mem10.clo}%
@@ -5180,31 +5183,32 @@
% (requested by Wilhelm M\"{u}ller).}
% \changes{v1.6180339c}{2009/01/13}{Added \cs{makerunningheadwidth}
% and \cs{makerunningfootwidth}}.
+% \changes{v1.6180339d}{2009/02/04}{Fixed a mental bug, /daleif}
% \begin{macrocode}
\newcommand*{\makerunningwidth}[1]{%
\def\m@mhfstyle{#1}%
\m@mopthfwidth}
\newcommand*{\m@mopthfwidth}[2][\@mpty]{%
- \setlength\@tempdima{#2}
-% \@namedef{\m@mhfstyle headrunwidth}{#2}%
- \expandafter\edef\csname \m@mhfstyle headrunwidth\endcsname{\the\@tempdima}
+% \setlength\@tempdima{#2}
+ \@namedef{\m@mhfstyle headrunwidth}{#2}%
+% \expandafter\edef\csname \m@mhfstyle headrunwidth\endcsname{\the\@tempdima}
\ifx\@mpty #1
-% \@namedef{\m@mhfstyle footrunwidth}{#2}%
- \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima}
+ \@namedef{\m@mhfstyle footrunwidth}{#2}%
+% \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima}
\else
-% \@namedef{\m@mhfstyle footrunwidth}{#1}%
- \setlength\@tempdima{#1}
- \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima}
+ \@namedef{\m@mhfstyle footrunwidth}{#1}%
+% \setlength\@tempdima{#1}
+% \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima}
\fi}
\newcommand*{\makerunningheadwidth}[2]{%
- \setlength\@tempdima{#2}%
- \expandafter\edef\csname \m@mhfstyle headrunwidth\endcsname{\the\@tempdima}%
-% \@namedef{#1headrunwidth}{#2}
+% \setlength\@tempdima{#2}%
+% \expandafter\edef\csname \m@mhfstyle headrunwidth\endcsname{\the\@tempdima}%
+ \@namedef{#1headrunwidth}{#2}%
}
\newcommand*{\makerunningfootwidth}[2]{%
- \setlength\@tempdima{#2}%
-% \@namedef{#1footrunwidth}{#2}
- \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima}%
+% \setlength\@tempdima{#2}%
+ \@namedef{#1footrunwidth}{#2}%
+% \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima}%
}
% \end{macrocode}