summaryrefslogtreecommitdiff
path: root/132html
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-06-14 09:09:28 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-06-14 09:09:28 +0000
commitcb284848eb9e3c84b670166346baa02e6a55ebf6 (patch)
tree881af02f5fcb2266e2b1cd64ba5198651a07813c /132html
parent71ecd01f8b10d6e24d8cdc5d36f957759a424959 (diff)
downloadpcre-cb284848eb9e3c84b670166346baa02e6a55ebf6.tar.gz
Update man pages to avoid the use of .ti (which causes difficulties for some
translation software). git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1339 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to '132html')
-rwxr-xr-x132html8
1 files changed, 4 insertions, 4 deletions
diff --git a/132html b/132html
index ccfbfd9..e1b70cd 100755
--- a/132html
+++ b/132html
@@ -108,9 +108,9 @@ while (<STDIN>)
# Handling .sp is subtle. If it is inside a literal section, do nothing if
# the next line is a non literal text line; similarly, if not inside a
- # literal section, do nothing if a literal follows. The point being that
- # the <pre> and </pre> that delimit literal sections will do the spacing.
- # Always skip if no previous output.
+ # literal section, do nothing if a literal follows, unless we are inside
+ # a .nf/.ne section. The point being that the <pre> and </pre> that delimit
+ # literal sections will do the spacing. Always skip if no previous output.
elsif (/^\.sp/)
{
@@ -123,7 +123,7 @@ while (<STDIN>)
}
else
{
- print TEMP "<br>\n<br>\n" if (!/^[\s.]/);
+ print TEMP "<br>\n<br>\n" if ($innf || !/^[\s.]/);
}
redo; # Now process the lookahead line we just read
}