mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 13:01:21 -03:00
fixup! fmt
It seems my emacs integration broke
This commit is contained in:
@@ -154,9 +154,11 @@ fn parse_cmd_opts(
|
||||
} else {
|
||||
let pid = fish_wcstoi(woptarg);
|
||||
if pid.is_err() || pid.unwrap() < 0 {
|
||||
streams
|
||||
.err
|
||||
.append(wgettext_fmt!("%ls: %ls: invalid process id", cmd, woptarg));
|
||||
streams.err.append(wgettext_fmt!(
|
||||
"%ls: %ls: invalid process id",
|
||||
cmd,
|
||||
woptarg
|
||||
));
|
||||
return STATUS_INVALID_ARGS;
|
||||
}
|
||||
let pid = pid.unwrap();
|
||||
|
||||
Reference in New Issue
Block a user