diff options
Diffstat (limited to 'src/lib/fmt/format.go')
-rw-r--r-- | src/lib/fmt/format.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/fmt/format.go b/src/lib/fmt/format.go index ef8477764..e230ec99c 100644 --- a/src/lib/fmt/format.go +++ b/src/lib/fmt/format.go @@ -33,7 +33,7 @@ func init() { } } -export type Fmt struct { +type Fmt struct { buf string; wid int; wid_present bool; @@ -68,7 +68,7 @@ func (f *Fmt) init() { f.clearflags(); } -export func New() *Fmt { +func New() *Fmt { f := new(Fmt); f.init(); return f; |