From 2d1f81ea220bd572899afd70f62f59bc732f1db5 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 9 Feb 1999 16:03:31 +0000 Subject: do_cmd_maketitle(): Small nit in creating the "title page". --- Doc/perl/python.perl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 883bd3e..48cf0dd 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -863,10 +863,11 @@ sub do_cmd_maketitle { if ($t_author) { if ($t_authorURL) { my $href = translate_commands($t_authorURL); - $href = make_named_href('author', $href, "${t_author}"); + $href = make_named_href('author', $href, + "$t_author"); $the_title .= "\n

$href

"; } else { - $the_title .= "\n

$t_author

"; + $the_title .= ("\n

$t_author

"); } } else { write_warnings("\nThere is no author for this document."); } if ($t_institute) { -- cgit v0.12