fix two print statements

R=gri
OCL=14105
CL=14105
This commit is contained in:
Rob Pike 2008-08-11 21:37:46 -07:00
parent 72d50900e3
commit 7293dab5a9

View File

@ -66,13 +66,13 @@ func (f *Fmt) str() string {
}
func (f *Fmt) put() {
print f.buf;
print(f.buf);
f.clearbuf();
f.clearflags();
}
func (f *Fmt) putnl() {
print f.buf, "\n";
print(f.buf, "\n");
f.clearbuf();
f.clearflags();
}