Commit b3d32eba authored by Bruce Momjian's avatar Bruce Momjian

In SGML we only need to worry about "<", not ">"; update scripts.

parent 6416a82a
...@@ -44,7 +44,7 @@ For Major Releases ...@@ -44,7 +44,7 @@ For Major Releases
o document all new features o document all new features
o update help output from inside the programs o update help output from inside the programs
o doc/src/sgml/ref manual pages 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 o update the sizes specified for installation requirements
(doc/src/sgml/installation.sgml, section "install-requirements") (doc/src/sgml/installation.sgml, section "install-requirements")
o update the shared memory size requirement table o update the shared memory size requirement table
......
#!/bin/sh #!/bin/sh
# src/tools/find_gt_lt # src/tools/find_lt
# SGML is fine with ">"
grep "$@" '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml
grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment