1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-06-19 21:58:04 +02:00

unposted: README: add missed note about <<< redirection

this was meant to be posted as part of workers/49813, but it was missed in the
actual commit somehow. see workers/53528
This commit is contained in:
Mikael Magnusson 2022-03-08 12:34:20 -06:00 committed by dana
parent 80de57d5a6
commit 001cba48ce
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2025-04-28 dana <dana@dana.is>
* unposted: README: add missed note about <<< redirection
* 53527: Doc/Zsh/contrib.yo, Functions/Misc/zgetopt, NEWS,
Test/Z04zgetopt.ztst: remove zgetopt (feature not ready)

5
README
View file

@ -217,6 +217,11 @@ The ${name:offset:length} expansion syntax now behaves more similarly to
other shells in that the offset and length are applied as array indices
prior to scalar conversion in e.g. "${*:0:2}".
The optimization for the =(<<<foo) construct with no command, which
creates a temporary file with contents "foo", now adds a newline byte
after "foo" for consistency with the behaviour of the <<< redirection
everywhere else.
Incompatibilities between 5.7.1 and 5.8.1
-----------------------------------------