fixup! fmt

It seems my emacs integration broke
This commit is contained in:
Fabian Boehm 2023-12-01 18:17:07 +01:00
parent fe9d1228e1
commit 05b024c675

View file

@ -154,9 +154,11 @@ fn parse_cmd_opts(
} else { } else {
let pid = fish_wcstoi(woptarg); let pid = fish_wcstoi(woptarg);
if pid.is_err() || pid.unwrap() < 0 { if pid.is_err() || pid.unwrap() < 0 {
streams streams.err.append(wgettext_fmt!(
.err "%ls: %ls: invalid process id",
.append(wgettext_fmt!("%ls: %ls: invalid process id", cmd, woptarg)); cmd,
woptarg
));
return STATUS_INVALID_ARGS; return STATUS_INVALID_ARGS;
} }
let pid = pid.unwrap(); let pid = pid.unwrap();