From: Bruce Momjian Date: Thu, 1 Sep 2011 14:17:04 +0000 (-0400) Subject: In SGML we only need to worry about "<", not ">"; update scripts. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=b3d32ebac62d89eaedc740af5d3592ac019b8533;p=users%2Fkgrittn%2Fpostgres.git In SGML we only need to worry about "<", not ">"; update scripts. --- diff --git a/src/tools/RELEASE_CHANGES b/src/tools/RELEASE_CHANGES index 8e54793f1d..ba4cf2c5bf 100644 --- a/src/tools/RELEASE_CHANGES +++ b/src/tools/RELEASE_CHANGES @@ -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 index 460a992694..0000000000 --- a/src/tools/find_gt_lt +++ /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 index 0000000000..f2f5f05a6d --- /dev/null +++ b/src/tools/find_lt @@ -0,0 +1,6 @@ +#!/bin/sh + +# src/tools/find_lt +# SGML is fine with ">" + +grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml