Output \n\r like it was done previously because ncurses is confused by \r\n
This commit is contained in:
parent
f45e1a9fb7
commit
dc71441293
1 changed files with 1 additions and 1 deletions
|
@ -45,9 +45,9 @@ grub_putcode (grub_uint32_t code, struct grub_term_output *term)
|
|||
return;
|
||||
}
|
||||
|
||||
(term->putchar) (code);
|
||||
if (code == '\n')
|
||||
(term->putchar) ('\r');
|
||||
(term->putchar) (code);
|
||||
}
|
||||
|
||||
/* Put a character. C is one byte of a UTF-8 stream.
|
||||
|
|
Loading…
Reference in a new issue