Skip to content

Commit 763eaed

Browse files
committed
feat: impl Detail option for not set SIG_INT
1 parent daa9f11 commit 763eaed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/settings.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,9 @@ fn settings_from(matches: &ArgMatches) -> (Settings, RunMode) {
245245
if name == "warn_default_encoding" {
246246
warn_default_encoding = true
247247
}
248+
if name == "no_sig_int" {
249+
settings.no_sig_int = true;
250+
}
248251
let value = parts.next().map(ToOwned::to_owned);
249252
(name, value)
250253
}));

0 commit comments

Comments
 (0)