mirror of
https://github.com/alacritty/alacritty.git
synced 2025-04-21 18:02:37 -04:00
Rename some variables for clarity
This commit is contained in:
parent
dd7eb92d68
commit
6de7ee0c51
1 changed files with 4 additions and 4 deletions
|
@ -1557,25 +1557,25 @@ impl ansi::Handler for Term {
|
|||
#[inline]
|
||||
fn save_cursor_position(&mut self) {
|
||||
trace!("CursorSave");
|
||||
let mut holder = if self.alt {
|
||||
let mut cursor = if self.alt {
|
||||
&mut self.cursor_save_alt
|
||||
} else {
|
||||
&mut self.cursor_save
|
||||
};
|
||||
|
||||
*holder = self.cursor;
|
||||
*cursor = self.cursor;
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn restore_cursor_position(&mut self) {
|
||||
trace!("CursorRestore");
|
||||
let holder = if self.alt {
|
||||
let source = if self.alt {
|
||||
&self.cursor_save_alt
|
||||
} else {
|
||||
&self.cursor_save
|
||||
};
|
||||
|
||||
self.cursor = *holder;
|
||||
self.cursor = *source;
|
||||
self.cursor.point.line = min(self.cursor.point.line, self.grid.num_lines() - 1);
|
||||
self.cursor.point.col = min(self.cursor.point.col, self.grid.num_cols() - 1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue