mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-23 02:41:14 -03:00
This was printed basically everywhere.
The user knows what they executed on standard input.
A good example:
```fish
set c (subme 513)
```
used to print
```
fish: Too much data emitted by command substitution so it was discarded
set -l x (string repeat -n $argv x)
^
in function 'subme'
called on standard input
with parameter list '513'
in command substitution
called on standard input
```
and now it is
```
fish: Too much data emitted by command substitution so it was discarded
set -l x (string repeat -n $argv x)
^
in function 'subme' with arguments '513'
in command substitution
```
See #5434.
30 lines
841 B
Plaintext
30 lines
841 B
Plaintext
|
|
####################
|
|
# Command sub just under the limit should succeed
|
|
|
|
####################
|
|
# Command sub at the limit should fail
|
|
fish: Too much data emitted by command substitution so it was discarded
|
|
|
|
set b (string repeat -n 512 x)
|
|
^
|
|
|
|
####################
|
|
# Command sub over the limit should fail
|
|
fish: Too much data emitted by command substitution so it was discarded
|
|
|
|
set -l x (string repeat -n $argv x)
|
|
^
|
|
in function 'subme' with arguments '513'
|
|
in command substitution
|
|
|
|
####################
|
|
# Make sure output from builtins outside of command substitution is not affected
|
|
|
|
####################
|
|
# Same builtin in a command substitution is affected
|
|
fish: Too much data emitted by command substitution so it was discarded
|
|
|
|
echo this will fail (string repeat --max 513 b) to output anything
|
|
^
|