Set MSRV to 1.71

This commit is contained in:
Jeremy Soller 2024-01-29 09:47:06 -07:00
parent ff1ba5b12e
commit a249d7d0e1
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
3 changed files with 59 additions and 56 deletions

View file

@ -634,7 +634,9 @@ impl Terminal {
}
// Tab skip/stop is handled by alacritty_terminal
if buffer.lines[line_i].set_text(text.replace('\t', " "), attrs_list.clone()) {
if buffer.lines[line_i]
.set_text(text.replace('\t', " "), attrs_list.clone())
{
buffer.set_redraw(true);
}
line_i += 1;