From 446402279921d96c3e98c6f59715827c5165be94 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 11 Nov 1996 20:51:09 +0000 Subject: [PATCH] (myformat.perl): Simplify generated HTML for "\optional{...}". --- Doc/myformat.perl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/myformat.perl b/Doc/myformat.perl index b833ab78cec..5d0fb54d1dd 100644 --- a/Doc/myformat.perl +++ b/Doc/myformat.perl @@ -6,7 +6,7 @@ # # XXX Not complete: \indexii etc.; \funcitem etc. -package main; +package main; # \bcode and \ecode brackets around verbatim @@ -28,7 +28,7 @@ sub do_cmd_e{ "\\" } sub do_cmd_optional{ local($_) = @_; - s/$any_next_pair_pr_rx/\[<\/BIG>\2<\/VAR>\]<\/BIG>/; + s/$any_next_pair_pr_rx/\[<\/BIG>\2\]<\/BIG>/; $_; }