summaryrefslogtreecommitdiff
path: root/src/lib/bufio.go
AgeCommit message (Collapse)AuthorFilesLines
2008-10-23use &T{1,2,3} constructor for simple new casesRuss Cox1-15/+8
R=r OCL=17691 CL=17719
2008-10-07update code to follow new semicolon rules:Russ Cox1-39/+39
* 1. all statements and declarations are terminated by semicolons * 2. semicolons can be omitted at top level. * 3. semicolons can be omitted before and after the closing ) or } * on a list of statements or declarations. /home/rsc/bin/addsemi and then diff+tweak. R=r,gri OCL=16620 CL=16643
2008-09-16fix / work around bugs in bufio testRuss Cox1-2/+10
R=r DELTA=11 (8 added, 0 deleted, 3 changed) OCL=15405 CL=15405
2008-09-12buffered input & outputRuss Cox1-0/+402
R=r DELTA=812 (803 added, 0 deleted, 9 changed) OCL=15225 CL=15280