diff options
author | Karl Berry <karl@freefriends.org> | 2009-02-07 00:48:55 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-02-07 00:48:55 +0000 |
commit | f960d764a22c7d401357dbcf0f9b0dba0e517f1b (patch) | |
tree | 1cf55ee9eb2de62672cc628959105057df58af76 /Master/texmf-dist/tex/latex/memoir/memoir.cls | |
parent | 50fc710f4c615b0616b02fd75ff94db6a09687af (diff) |
memoir v1.6180339c again (6feb09)
git-svn-id: svn://tug.org/texlive/trunk@12109 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/memoir/memoir.cls')
-rw-r--r-- | Master/texmf-dist/tex/latex/memoir/memoir.cls | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/Master/texmf-dist/tex/latex/memoir/memoir.cls b/Master/texmf-dist/tex/latex/memoir/memoir.cls index cdde4cba8d1..0cdbc0c5398 100644 --- a/Master/texmf-dist/tex/latex/memoir/memoir.cls +++ b/Master/texmf-dist/tex/latex/memoir/memoir.cls @@ -25,7 +25,7 @@ %% \NeedsTeXFormat{LaTeX2e} \ProvidesClass{memoir}% - [2009/01/25 v1.6180339c configurable book, report, article document class] + [2009/02/04 v1.6180339d configurable book, report, article document class] \newcommand*{\@ptsize}{} \newcommand*{\@memptsize}{} \newlength{\onelineskip} @@ -1392,21 +1392,17 @@ \def\m@mhfstyle{#1}% \m@mopthfwidth} \newcommand*{\m@mopthfwidth}[2][\@mpty]{% - \setlength\@tempdima{#2} - \expandafter\edef\csname \m@mhfstyle headrunwidth\endcsname{\the\@tempdima} + \@namedef{\m@mhfstyle headrunwidth}{#2}% \ifx\@mpty #1 - \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima} + \@namedef{\m@mhfstyle footrunwidth}{#2}% \else - \setlength\@tempdima{#1} - \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima} + \@namedef{\m@mhfstyle footrunwidth}{#1}% \fi} \newcommand*{\makerunningheadwidth}[2]{% - \setlength\@tempdima{#2}% - \expandafter\edef\csname \m@mhfstyle headrunwidth\endcsname{\the\@tempdima}% + \@namedef{#1headrunwidth}{#2}% } \newcommand*{\makerunningfootwidth}[2]{% - \setlength\@tempdima{#2}% - \expandafter\edef\csname \m@mhfstyle footrunwidth\endcsname{\the\@tempdima}% + \@namedef{#1footrunwidth}{#2}% } \newlength{\normalrulethickness} |