mirror of https://github.com/golang/go.git
parent
72d50900e3
commit
7293dab5a9
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue