diff options
author | Roel <polyfloyd@users.noreply.github.com> | 2017-10-22 17:42:40 +0200 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-10-22 08:42:40 -0700 |
commit | a1174797b4ce2259510f29d3468526b4c0d460c1 (patch) | |
tree | 2c3e614c661188992889062eff1b193be93ee5d8 /src/input.rs | |
parent | 8af4a4b55b4eaa2df78be24e19200a524dc3da4c (diff) | |
download | alacritty-a1174797b4ce2259510f29d3468526b4c0d460c1.tar.gz alacritty-a1174797b4ce2259510f29d3468526b4c0d460c1.zip |
Rewrite err_println to eprintln introduced in Rust 1.19 (#799)
Diffstat (limited to 'src/input.rs')
-rw-r--r-- | src/input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input.rs b/src/input.rs index 7378e8dc..4901a409 100644 --- a/src/input.rs +++ b/src/input.rs @@ -187,7 +187,7 @@ impl Action { .and_then(|clipboard| clipboard.load_primary() ) .map(|contents| { self.paste(ctx, contents) }) .unwrap_or_else(|err| { - err_println!("Error loading data from clipboard. {}", Red(err)); + eprintln!("Error loading data from clipboard. {}", Red(err)); }); }, Action::PasteSelection => { |