From d65f33830470f308d4a162f1137f71d4bf9248b6 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 16 Feb 2026 16:19:01 +0100 Subject: [PATCH] expand: remove empty after help --- src/uu/expand/src/expand.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/uu/expand/src/expand.rs b/src/uu/expand/src/expand.rs index 96ed5181dac..6696859efb4 100644 --- a/src/uu/expand/src/expand.rs +++ b/src/uu/expand/src/expand.rs @@ -16,8 +16,7 @@ use thiserror::Error; use unicode_width::UnicodeWidthChar; use uucore::display::Quotable; use uucore::error::{FromIo, UError, UResult, USimpleError, set_exit_code}; -use uucore::translate; -use uucore::{format_usage, show}; +use uucore::{format_usage, show, translate}; pub mod options { pub static TABS: &str = "tabs"; @@ -26,8 +25,6 @@ pub mod options { pub static FILES: &str = "FILES"; } -static LONG_HELP: &str = ""; - static DEFAULT_TABSTOP: usize = 8; /// The mode to use when replacing tabs beyond the last one specified in @@ -254,7 +251,6 @@ pub fn uu_app() -> Command { Command::new(uucore::util_name()) .version(uucore::crate_version!()) .about(translate!("expand-about")) - .after_help(LONG_HELP) .override_usage(format_usage(&translate!("expand-usage"))), ) .infer_long_args(true)