From d08889aa8b462befe4d494d01ed4cc81644c1d22 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 23 Jan 2005 00:30:59 +0000 Subject: Add tools/find_gt_lt to find < and > in SGML source. Lowercase some uppercase tags so tools is more reliable at finding problems. --- src/tools/RELEASE_CHANGES | 2 +- src/tools/find_gt_lt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100755 src/tools/find_gt_lt (limited to 'src') diff --git a/src/tools/RELEASE_CHANGES b/src/tools/RELEASE_CHANGES index 149e67f4bce..a087d0c85af 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 00000000000..66919dd7ae3 --- /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 -- cgit v1.2.3