From 0d58d44da11611f3af6e29337e58212184bc1eeb Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 6 Dec 1996 15:09:14 +0000 Subject: [PATCH] (myformat.perl): Don't italicize the '[]' characters around optional parameters. --- Doc/myformat.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/myformat.perl b/Doc/myformat.perl index 08870128ade..768cb21fe88 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>/; $_; }