From a1174797b4ce2259510f29d3468526b4c0d460c1 Mon Sep 17 00:00:00 2001 From: Roel Date: Sun, 22 Oct 2017 17:42:40 +0200 Subject: Rewrite err_println to eprintln introduced in Rust 1.19 (#799) --- src/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/input.rs') 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 => { -- cgit v1.2.3-54-g00ecf