diff options
author | Matthias Krüger <matthias.krueger@famsik.de> | 2018-07-25 21:46:45 +0200 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-07-25 19:46:45 +0000 |
commit | ddb9a558170ad16f19135b2f6a5a7a7e8ac61c3c (patch) | |
tree | 8e8a1adbb4e9185524e870393082295e6fd2a68e /src | |
parent | d25134bc6b8b13d5ff550c950c65b6e9c4a7a267 (diff) | |
download | alacritty-ddb9a558170ad16f19135b2f6a5a7a7e8ac61c3c.tar.gz alacritty-ddb9a558170ad16f19135b2f6a5a7a7e8ac61c3c.zip |
Fix clippy lints and run font tests on travis
This fixes some existing clippy issues and runs the `font` tests through travis.
Testing of copypasta crate was omitted due to problens when running on headless travis-ci environment (x11 clipboard would fail).
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index f7a1fa1a..fc6b0821 100644 --- a/src/main.rs +++ b/src/main.rs @@ -180,7 +180,7 @@ fn run(mut config: Config, options: &cli::Options) -> Result<(), Box<Error>> { .as_ref() .and_then(|monitor| monitor.pending_config()) { - config = new_config.update_dynamic_title(&options); + config = new_config.update_dynamic_title(options); display.update_config(&config); processor.update_config(&config); terminal.update_config(&config); |