Skip to content

Commit 07127bc

Browse files
committed
[css2] No longer adds the example 'property-name' to the index.
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401992
1 parent e8029fe commit 07127bc

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

css2/bin/mkpropidx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/local/bin/perl
22
# Index of property names.
33
# Arnaud Le Hors lehors@w3.org/Ian Jacobs ij@w3.org
4-
# $Id: mkpropidx,v 2.10 2002-11-18 22:59:56 bbos Exp $
4+
# $Id: mkpropidx,v 2.11 2002-12-16 20:42:15 bbos Exp $
55
use English;
66

77

@@ -167,7 +167,8 @@ sub table_head {
167167

168168
sub table_body {
169169
foreach $x (sort @indexes) {
170-
($name, $val, $init, $app, $inh, $perc, $media, $compval) = split(/;;/, $x);
170+
($name, $val, $init, $app, $inh, $perc, $media, $compval) = split(/;;/, $x);
171+
if ($name !~ /\s*property-name\s*/) { # Skip the example
171172
print OUTPUT "<tr>";
172173
format_name($name);
173174
format_val($val);
@@ -179,6 +180,7 @@ sub table_body {
179180
#format_compval($compval);
180181
print OUTPUT "\n";
181182
}
183+
}
182184
}
183185

184186
sub table_foot {

0 commit comments

Comments
 (0)