Skip to content

Commit 648c8c9

Browse files
authored
Merge pull request #97 from vadimb892/more
READY: `more`
2 parents 6f658b6 + 793ca6c commit 648c8c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .github/workflows/TestingCI.yml

+1-1
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

Diff for: display/Cargo.toml

+1-1
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

Diff for: display/more.rs

+1-1
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)