This commit is contained in:
Kovid Goyal 2025-05-24 13:25:22 +05:30
parent 54395da696
commit 8e720cc1da
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -33,7 +33,7 @@ func convert_text(text string, cols int) string {
continue
}
if strings.TrimRight(full_line, "\r") == "" {
for i := 0; i < len(full_line); i++ {
for range len(full_line) {
lines = append(lines, empty_line)
}
continue