Skip to content

Commit eaee387

Browse files
committed
[more] few more fixes
1 parent 6f658b6 commit eaee387

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/TestingCI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
- name: Build
4545
run: cargo build --release --verbose
4646
- name: Run tests
47-
run: cargo test --release --verbose
47+
run: cargo test --release --verbose

display/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rust-version.workspace = true
1111
clap.workspace = true
1212
clap.features = ["env"]
1313
gettext-rs.workspace = true
14-
libc = { version = "0.2", default-features = false }
14+
libc.workspace = true
1515
termion = "4.0"
1616
thiserror = "1.0"
1717

display/more.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static NEED_QUIT: Mutex<bool> = Mutex::new(false);
4040

4141
/// more - display files on a page-by-page basis.
4242
#[derive(Parser)]
43-
#[command(version, about = "more - display files on a page-by-page basis")]
43+
#[command(version, about = gettext("more - display files on a page-by-page basis"))]
4444
struct Args {
4545
/// Do not scroll, display text and clean line ends
4646
#[arg(

0 commit comments

Comments
 (0)