From 84d86556774ed7e1cd3f7c2c915b2bdeb47eb940 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Fri, 13 Dec 2024 21:57:07 +0100 Subject: [PATCH] fmt! --- src/env_dispatch.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/env_dispatch.rs b/src/env_dispatch.rs index cdebe860d..1d05f178f 100644 --- a/src/env_dispatch.rs +++ b/src/env_dispatch.rs @@ -619,9 +619,15 @@ fn init_curses(vars: &EnvStack) { // We do not warn for xterm-256color at all, we know that one. if term != Some("xterm-256color".into()) { if let Some(term) = term { - FLOG!(warning, wgettext_fmt!("Could not set up terminal for $TERM '%ls'", term)); + FLOG!( + warning, + wgettext_fmt!("Could not set up terminal for $TERM '%ls'", term) + ); } else { - FLOG!(warning, wgettext!("Could not set up terminal because $TERM is unset.")); + FLOG!( + warning, + wgettext!("Could not set up terminal because $TERM is unset.") + ); } } }