Skip to content

Commit b102e20

Browse files
committed
[css2] Added some documentation.
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401260
1 parent 0a0f1ba commit b102e20

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

css2/bin/Attic/utils.pm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A few common routines -*-perl-*-
22
#
33
# Bert Bos <bert@w3.org>
4-
# $Id: utils.pm,v 2.0 1998-02-02 19:19:15 bbos Exp $
4+
# $Id: utils.pm,v 2.1 1998-03-17 17:06:59 bbos Exp $
55

66
package utils;
77
require Exporter;
@@ -27,6 +27,9 @@ $chapno = -1; # Number of the chapter under consideration
2727
@tonavbar = (); # Whether the link goes into the navbar
2828
$src_ext = undef; # Extension of source files
2929

30+
# Parse a string into an array of "words".
31+
# Words are whitespace-separated sequences of non-whitespace characters,
32+
# or quoted strings ("" or ''), with the quotes removed.
3033
sub parsewords {
3134
my $line = $_[0];
3235
my @words = ();

css2/bin/utils.pm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A few common routines -*-perl-*-
22
#
33
# Bert Bos <bert@w3.org>
4-
# $Id: utils.pm,v 2.0 1998-02-02 19:19:15 bbos Exp $
4+
# $Id: utils.pm,v 2.1 1998-03-17 17:06:59 bbos Exp $
55

66
package utils;
77
require Exporter;
@@ -27,6 +27,9 @@ $chapno = -1; # Number of the chapter under consideration
2727
@tonavbar = (); # Whether the link goes into the navbar
2828
$src_ext = undef; # Extension of source files
2929

30+
# Parse a string into an array of "words".
31+
# Words are whitespace-separated sequences of non-whitespace characters,
32+
# or quoted strings ("" or ''), with the quotes removed.
3033
sub parsewords {
3134
my $line = $_[0];
3235
my @words = ();

0 commit comments

Comments
 (0)