diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2017-09-27 20:29:44 -0400 |
|---|---|---|
| committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-09-27 17:29:44 -0700 |
| commit | 5f7885749c4d7e48869b1fc0be4d430601cdbbfa (patch) | |
| tree | 77916f2d24f71c846700139bbeaacec1f8699928 /src/term | |
| parent | eb231b3e70b87875df4bdd1974d5e94704024d70 (diff) | |
| download | r-alacritty-5f7885749c4d7e48869b1fc0be4d430601cdbbfa.tar.gz r-alacritty-5f7885749c4d7e48869b1fc0be4d430601cdbbfa.tar.bz2 r-alacritty-5f7885749c4d7e48869b1fc0be4d430601cdbbfa.zip | |
Use clippy = "*", update, and fix some warnings (#796)
Because there are so many clippy warnings in the current codebase,
this commit removes '#![cfg_attr(feature = "clippy", deny(clippy))]',
to make it easier to fix warnings incrementally.
Diffstat (limited to 'src/term')
| -rw-r--r-- | src/term/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term/mod.rs b/src/term/mod.rs index 027feaf1..8dcfa365 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -1566,7 +1566,7 @@ impl ansi::Handler for Term { #[inline] fn save_cursor_position(&mut self) { trace!("CursorSave"); - let mut cursor = if self.alt { + let cursor = if self.alt { &mut self.cursor_save_alt } else { &mut self.cursor_save |