]> Cypherpunks repositories - gostls13.git/commit
more comment work.
authorRuss Cox <rsc@golang.org>
Tue, 6 Oct 2009 22:28:47 +0000 (15:28 -0700)
committerRuss Cox <rsc@golang.org>
Tue, 6 Oct 2009 22:28:47 +0000 (15:28 -0700)
commit2c2e2c5d5582225632be487dba4ede8761374294
tree7b454e7032609574c80c0e940c03c16b929c465a
parentdc093494f38deb14e3a8818972b8248811787272
more comment work.
got rid of regexps.
primary bug fix is that // inside /* */ do not get stripped anymore,
so that the text inside

/*
int a;
// int b;
int c;
*/

is

int a;
// int b;
int c;

before, the "int b;" line was being uncommented too.

R=gri
DELTA=65  (13 added, 42 deleted, 10 changed)
OCL=35334
CL=35404
src/pkg/go/doc/comment.go