summaryrefslogtreecommitdiff
path: root/132html
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-10-05 10:59:35 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-10-05 10:59:35 +0000
commitf66c8de115b662c90e2a0af9a4357f69df2b3106 (patch)
treefec1a80cdf7c366cb1868339fce075f556c95feb /132html
parent7f1b753dfecb0db660812f00e667abaca6252e28 (diff)
downloadpcre-f66c8de115b662c90e2a0af9a4357f69df2b3106.tar.gz
Tidy up, remove trailing spaces, etc. for 8.00-RC1.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@461 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to '132html')
-rwxr-xr-x132html14
1 files changed, 7 insertions, 7 deletions
diff --git a/132html b/132html
index 062babc..ccfbfd9 100755
--- a/132html
+++ b/132html
@@ -231,23 +231,23 @@ while (<STDIN>)
$_ = "$one $two";
redo; # Process the joined lines
}
-
+
# .EX/.EE are used in the pcredemo page to bracket the entire program,
# which is unmodified except for turning backslash into "\e".
-
+
elsif (/^\.EX\s*$/)
{
print TEMP "<PRE>\n";
while (<STDIN>)
{
- last if /^\.EE\s*$/;
+ last if /^\.EE\s*$/;
s/\\e/\\/g;
- s/&/&amp;/g;
+ s/&/&amp;/g;
s/</&lt;/g;
s/>/&gt;/g;
- print TEMP;
- }
- }
+ print TEMP;
+ }
+ }
# Ignore anything not recognized