mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
fixup! fmt
It seems my emacs integration broke
This commit is contained in:
parent
fe9d1228e1
commit
05b024c675
1 changed files with 5 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue