diff options
| author | Fred Drake <fdrake@acm.org> | 2005-07-29 17:17:19 +0000 |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 2005-07-29 17:17:19 +0000 |
| commit | fe256431922c44375fa1e6c21bca69f5cb65481d (patch) | |
| tree | 23f30d1993354a014894827e267ec3f8fc8a4794 /Doc/texinputs/howto.cls | |
| parent | 50747fc1b9985e857ef6138bcb9b24257aefc949 (diff) | |
| download | cpython-git-fe256431922c44375fa1e6c21bca69f5cb65481d.tar.gz | |
use a test for PDF support that is more portable across teTeX major versions
(closes SF bug #1238210)
Diffstat (limited to 'Doc/texinputs/howto.cls')
| -rw-r--r-- | Doc/texinputs/howto.cls | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/texinputs/howto.cls b/Doc/texinputs/howto.cls index 936e1faf3a..c9beb4a5ca 100644 --- a/Doc/texinputs/howto.cls +++ b/Doc/texinputs/howto.cls @@ -50,7 +50,8 @@ % \renewcommand{\maketitle}{ \py@doHorizontalRule - \@ifundefined{pdfinfo}{}{{ + \ifpdf + \begingroup % This \def is required to deal with multi-line authors; it % changes \\ to ', ' (comma-space), making it pass muster for % generating document info in the PDF file. @@ -59,7 +60,8 @@ /Author (\@author) /Title (\@title) } - }} + \endgroup + \fi \begin{flushright} {\rm\Huge\py@HeaderFamily \@title} \par {\em\large\py@HeaderFamily \py@release\releaseinfo} \par |
