summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-01-23 00:30:59 +0000
committerBruce Momjian <bruce@momjian.us>2005-01-23 00:30:59 +0000
commitd08889aa8b462befe4d494d01ed4cc81644c1d22 (patch)
tree5b9893f3aa7410ea631ddd9be11b61405f0493c7 /src/tools
parentbdbfd343a25b995fe4d0cd87787c946bd2fb6582 (diff)
downloadpostgresql-d08889aa8b462befe4d494d01ed4cc81644c1d22.tar.gz
Add tools/find_gt_lt to find < and > in SGML source.
Lowercase some uppercase tags so tools is more reliable at finding problems.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/RELEASE_CHANGES2
-rwxr-xr-xsrc/tools/find_gt_lt2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/RELEASE_CHANGES b/src/tools/RELEASE_CHANGES
index 149e67f4bc..a087d0c85a 100644
--- a/src/tools/RELEASE_CHANGES
+++ b/src/tools/RELEASE_CHANGES
@@ -29,7 +29,7 @@
document all new features
update help output from inside the programs
doc/src/sgml/ref manual pages
- convert any literal "<" and ">" characters
+ convert any literal "<" and ">" characters, use tools/find_gt_lt
* Ports
update config.guess and config.sub at the start of beta
diff --git a/src/tools/find_gt_lt b/src/tools/find_gt_lt
new file mode 100755
index 0000000000..66919dd7ae
--- /dev/null
+++ b/src/tools/find_gt_lt
@@ -0,0 +1,2 @@
+grep '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml
+grep '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml