mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 23:48:32 +00:00
multigrid: Change screen_* functions to grid_* functions
This commit is contained in:

committed by
Björn Linse

parent
c9b559a030
commit
f102f50ebe
@@ -582,8 +582,8 @@ static void prt_header(prt_settings_T *const psettings, const int pagenum,
|
||||
*/
|
||||
static void prt_message(char_u *s)
|
||||
{
|
||||
screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
|
||||
screen_puts(s, (int)Rows - 1, 0, HL_ATTR(HLF_R));
|
||||
grid_fill(&default_grid, (int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
|
||||
grid_puts(&default_grid, s, (int)Rows - 1, 0, HL_ATTR(HLF_R));
|
||||
ui_flush();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user