From 6de7ee0c511f3b7f2c01822b73da04eaaaf3ecf7 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Wed, 9 Aug 2017 13:24:42 -0500 Subject: [PATCH] Rename some variables for clarity --- src/term/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/term/mod.rs b/src/term/mod.rs index e1573cfe..6b39d939 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -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); }