From: Fred Drake Date: Mon, 7 Oct 2002 16:18:57 +0000 (+0000) Subject: Back-port part of 1.128 from the trunk: X-Git-Tag: v2.2.2b1~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86c6b96b771ddd2cb3f539551f95c717bf7c1ff1;p=thirdparty%2FPython%2Fcpython.git Back-port part of 1.128 from the trunk: \productioncont: Replace leading spaces with   so that it's possible to control the indentation of continuation lines. --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index f162685dd606..841b1097a5ed 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -808,6 +808,7 @@ sub do_cmd_production{ sub do_cmd_productioncont{ local($_) = @_; my $defn = next_argument(); + $defn =~ s/^( +)/' ' x length $1/e; return ("\n" . "  \n" . "  \n"