From: Fred Drake Date: Fri, 6 Dec 1996 15:09:14 +0000 (+0000) Subject: (myformat.perl): Don't italicize the '[]' characters around optional X-Git-Tag: v1.5a1~874 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d58d44da11611f3af6e29337e58212184bc1eeb;p=python (myformat.perl): Don't italicize the '[]' characters around optional parameters. --- diff --git a/Doc/myformat.perl b/Doc/myformat.perl index 08870128ad..768cb21fe8 100644 --- a/Doc/myformat.perl +++ b/Doc/myformat.perl @@ -26,7 +26,7 @@ sub do_cmd_e{ local($_) = @_; '\' . $_; } sub do_cmd_optional{ local($_) = @_; - s/$any_next_pair_pr_rx/\[<\/BIG>\2\]<\/BIG>/; + s/$any_next_pair_pr_rx/<\/VAR>\[<\/BIG>\2<\/VAR>\]<\/BIG>/; $_; }