| Index: proto/text.go |
| =================================================================== |
| --- a/proto/text.go |
| +++ b/proto/text.go |
| @@ -57,7 +57,7 @@ |
| func (w *textWriter) Write(p []byte) (n int, err os.Error) { |
| n, err = len(p), nil |
| - frags := strings.Split(string(p), "\n", -1) |
| + frags := strings.Split(string(p), "\n") |
| if w.compact { |
| w.writer.Write([]byte(strings.Join(frags, " "))) |
| return |