1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-04-19 08:34:00 +02:00

unposted (cf. 49077): Clarify unset example

This commit is contained in:
Bart Schaefer 2021-06-14 10:03:32 -07:00
parent 5b4a1626c2
commit d1c91776aa

2
NEWS
View File

@ -15,7 +15,7 @@ first expands $key as usual for a double-quoted string, and then interprets
that result as the exact hash element to unset. This differs from previous
versions of the shell, which would also remove a leading backslash for an
unusual subset of characters in the expansion of $key. Note this also
means, for example, that
means, for example, that now
unset 'hash[ab]cd]'
unsets the element with key "ab]cd" rather than silently doing nothing.