fmt and reflect updates for recent changes

TBR=r
OCL=21580
CL=21583
This commit is contained in:
Russ Cox 2008-12-19 03:06:19 -08:00
parent dc7b2e98d2
commit ba882f9940
7 changed files with 58 additions and 59 deletions

View file

@ -71,7 +71,7 @@ func (f *Fmt) init() {
}
export func New() *Fmt {
f := new(Fmt);
f := new(*Fmt);
f.init();
return f;
}