1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-04-27 12:25:18 +02:00

unposted: Note bug that HIST_IGNORE_DUPS mishandles quoted whitespace.

This commit is contained in:
Bart Schaefer 2024-03-14 13:22:11 -07:00
parent 326e8635fe
commit 45b0a838aa
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2024-03-14 Bart Schaefer <schaefer@zsh.org>
* unposted: Etc/BUGS: HIST_IGNORE_DUPS mishandles quoted whitespace.
* 52752: Src/params.c, Test/B02typeset.ztst: more typeset -p fixes
for local exports and improper "export -x" / "readonly -r" output.

View File

@ -57,4 +57,7 @@ and thus the expression is likely to be incorrectly interpreted.
------------------------------------------------------------------------
52521: Empty files and unreadable files cannot be removed using the
mapfile module "unset 'mapfile[filename]'", and are not distinguished
from files that do not exist.
from files that do not exist.
------------------------------------------------------------------------
52747,52755: HIST_IGNORE_DUPS et. al. ignore syntactically significant
quoted whitespace and can incorrectly exclude commands as duplicates.