mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-31 12:21:19 -03:00
printf: remove all uses of length modifiers
Length modifiers are useless. This simplifies the code a bit, results in more consistency, and allows removing a few PO messages which only differed in the use of length modifiers. Closes #11878
This commit is contained in:
committed by
Johannes Altmanninger
parent
e9f5982147
commit
83af5c91bd
@@ -10,7 +10,7 @@ function funced --description 'Edit function definition'
|
||||
end
|
||||
|
||||
if not set -q argv[1]
|
||||
printf (_ "%ls: Expected at least %d args, got only %d\n") funced 1 0
|
||||
printf (_ "%s: Expected at least %d args, got only %d\n") funced 1 0
|
||||
return 1
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user