Too many people use it without reading what it does.
Those people want ReadBytes or ReadString.
Fixes #3906.
R=golang-dev, iant, r
CC=golang-dev
https://golang.org/cl/
6442087
panic("not reached")
}
+// ReadLine is a low-level line-reading primitive. Most callers should use
+// ReadBytes('\n') or ReadString('\n') instead.
+//
// ReadLine tries to return a single line, not including the end-of-line bytes.
// If the line was too long for the buffer then isPrefix is set and the
// beginning of the line is returned. The rest of the line will be returned