Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/uu/expand/src/expand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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
Expand Down Expand Up @@ -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)
Expand Down
Loading