mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
multigrid: Change screen_* functions to grid_* functions
This commit is contained in:

committed by
Björn Linse

parent
c9b559a030
commit
f102f50ebe
@@ -2271,8 +2271,8 @@ static void do_intro_line(long row, char_u *mesg, int attr)
|
||||
}
|
||||
}
|
||||
assert(row <= INT_MAX && col <= INT_MAX);
|
||||
screen_puts_len(p, l, (int)row, (int)col,
|
||||
*p == '<' ? HL_ATTR(HLF_8) : attr);
|
||||
grid_puts_len(&default_grid, p, l, (int)row, (int)col,
|
||||
*p == '<' ? HL_ATTR(HLF_8) : attr);
|
||||
col += clen;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user