Fix all compile warnings in lib.rs

This commit is contained in:
Fahmi Akbar Wildana 2019-10-06 09:18:08 +07:00 committed by David Peter
parent cfd33168af
commit 710a1df4ff
1 changed files with 11 additions and 28 deletions

View File

@ -4,9 +4,6 @@
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate clap;
#[macro_use]
extern crate lazy_static;
@ -21,17 +18,17 @@ extern crate shell_words;
extern crate syntect;
extern crate wild;
mod assets;
mod config;
mod diff;
mod dirs;
mod inputfile;
mod line_range;
mod preprocessor;
mod style;
mod syntax_mapping;
mod terminal;
mod util;
pub mod assets;
pub mod config;
pub mod diff;
pub mod dirs;
pub mod inputfile;
pub mod line_range;
pub mod preprocessor;
pub mod style;
pub mod syntax_mapping;
pub mod terminal;
pub mod util;
mod errors {
error_chain! {
@ -42,18 +39,4 @@ mod errors {
ParseIntError(::std::num::ParseIntError);
}
}
pub fn handle_error(error: &Error) {
match error {
Error(ErrorKind::Io(ref io_error), _)
if io_error.kind() == ::std::io::ErrorKind::BrokenPipe =>
{
::std::process::exit(0);
}
_ => {
use ansi_term::Colour::Red;
eprintln!("{}: {}", Red.paint("[bat error]"), error);
}
};
}
}