diff options
Diffstat (limited to 'doc/src/sgml/mk_feature_tables.pl')
-rw-r--r-- | doc/src/sgml/mk_feature_tables.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/sgml/mk_feature_tables.pl b/doc/src/sgml/mk_feature_tables.pl index 7b4f45f3de1..5dad68b809d 100644 --- a/doc/src/sgml/mk_feature_tables.pl +++ b/doc/src/sgml/mk_feature_tables.pl @@ -1,6 +1,6 @@ # /usr/bin/perl -w -# $PostgreSQL: pgsql/doc/src/sgml/mk_feature_tables.pl,v 2.2 2006/03/11 04:38:30 momjian Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/mk_feature_tables.pl,v 2.3 2008/10/18 00:35:32 petere Exp $ my $yesno = $ARGV[0]; @@ -30,6 +30,8 @@ while (<FEAT>) { $is_supported eq $yesno || next; + $feature_name =~ s/</</g; + $feature_name =~ s/>/>/g; $subfeature_name =~ s/</</g; $subfeature_name =~ s/>/>/g; |