Skip to content

Commit cec21e6

Browse files
author
Gusted
committed
Fix newlines
1 parent 81d2ced commit cec21e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/charset/escape.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ func EscapeControlReader(text io.Reader, output io.Writer) (escaped EscapeStatus
6969
lineHasBIDI := false
7070
lineHasRTLScript := false
7171
lineHasLTRScript := false
72+
7273
readingloop:
7374
for err == nil {
7475
n, err = text.Read(buf[readStart:])
@@ -78,7 +79,6 @@ readingloop:
7879

7980
for i < len(bs) {
8081
r, size := utf8.DecodeRune(bs[i:])
81-
8282
// Now handle the codepoints
8383
switch {
8484
case r == utf8.RuneError:

0 commit comments

Comments
 (0)