In SGML we only need to worry about "<", not ">"; update scripts.
authorBruce Momjian <bruce@momjian.us>
Thu, 1 Sep 2011 14:17:04 +0000 (10:17 -0400)
committerBruce Momjian <bruce@momjian.us>
Thu, 1 Sep 2011 14:17:04 +0000 (10:17 -0400)
src/tools/RELEASE_CHANGES
src/tools/find_gt_lt [deleted file]
src/tools/find_lt [new file with mode: 0755]

index 8e54793f1df048f649718d3bb63a2172ab578f33..ba4cf2c5bfc5d6c621883b4273890c3daae3c207 100644 (file)
@@ -44,7 +44,7 @@ For Major Releases
    o document all new features
    o update help output from inside the programs
    o doc/src/sgml/ref manual pages
-   o convert any literal "<" and ">" characters, use tools/find_gt_lt
+   o convert any literal "<" and ">" characters, use tools/find_lt
    o update the sizes specified for installation requirements
      (doc/src/sgml/installation.sgml, section "install-requirements")
    o update the shared memory size requirement table
diff --git a/src/tools/find_gt_lt b/src/tools/find_gt_lt
deleted file mode 100755 (executable)
index 460a992..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-# src/tools/find_gt_lt
-
-grep "$@" '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml
-grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml
diff --git a/src/tools/find_lt b/src/tools/find_lt
new file mode 100755 (executable)
index 0000000..f2f5f05
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+# src/tools/find_lt
+# SGML is fine with ">"
+
+grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml