Skip to content

Commit

Permalink
Merge pull request #28 from kumavale/dependabot/cargo/dependencies-b2…
Browse files Browse the repository at this point in the history
…2b264ef4

Update nix requirement from 0.28 to 0.29 in the dependencies group
  • Loading branch information
kumavale authored Dec 31, 2024
2 parents 7e41ebc + 738fafa commit a51cdb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ features = [
version = "0.2"

[target.'cfg(unix)'.dependencies]
nix = "0.28"
nix = { version = "0.29", features = ["process", "signal"] }
2 changes: 1 addition & 1 deletion src/repl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ where
// If `--instead-crlf` is true, change to "\r\n"
if *flags.lock().unwrap().instead_crlf() && key == Key::Char('\r') {
// Send carriage return
port.send(&[ b'\r', b'\n' ]);
port.send(b"\r\n");
continue;
}

Expand Down

0 comments on commit a51cdb8

Please sign in to comment.