diff --git a/Docs/Support/docbook-fixup.pl b/Docs/Support/docbook-fixup.pl index ae4bfc26b42..1dde06a3074 100755 --- a/Docs/Support/docbook-fixup.pl +++ b/Docs/Support/docbook-fixup.pl @@ -45,6 +45,11 @@ print STDERR "Fixing spacing problem with titles...\n"; $data =~ s{(\w{2,})} { $2}gs; +# 2002-02-15 arjen@mysql.com +print STDERR "Adding closing / to XREF...\n"; +$data =~ s{} + {}gs; + # 2002-01-30 arjen@mysql.com print STDERR "Removing COLSPEC...\n"; $data =~ s{\n *} @@ -65,10 +70,10 @@ print STDERR "Removing lf before /PARA in ENTRY...\n"; $data =~ s{((.+?))\n()} {$1$3}gs; -# 2002-01-31 arjen@mysql.com -print STDERR "Removing whitespace before /PARA...\n"; -$data =~ s{[ ]+} - {}gs; +# 2002-01-31 arjen@mysql.com (2002-02-15 added \n stuff) +print STDERR "Removing whitespace before /PARA if not on separate line...\n"; +$data =~ s{([^\n ])[ ]+} + {$1}gs; # 2002-01-31 arjen@mysql.com print STDERR "Removing empty PARA in ENTRY...\n"; diff --git a/Docs/manual.texi b/Docs/manual.texi index 45dbae88a22..2e78af44557 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -168,7 +168,7 @@ The following list describes some useful sections of the manual: @itemize @bullet @item For information about the company behind the @code{MySQL Database Server}, -see @ref{What is MySQL AB}. +see @ref{What is MySQL AB}. @item For a discussion about the capabilities of the @code{MySQL Database Server},