summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2022-12-17 00:09:37 +0100
committerOliver Kiddle <opk@zsh.org>2022-12-17 00:37:19 +0100
commit35a2f155c3b92e67957325e1f49e409546378e3e (patch)
tree7c4593cf459ae5067627043c7fba15866c48c8c6 /ChangeLog
parent51207: fix for read -d when the delimiter is a byte >= 0x80 (diff)
downloadzsh-35a2f155c3b92e67957325e1f49e409546378e3e.tar
zsh-35a2f155c3b92e67957325e1f49e409546378e3e.tar.gz
zsh-35a2f155c3b92e67957325e1f49e409546378e3e.tar.bz2
zsh-35a2f155c3b92e67957325e1f49e409546378e3e.tar.lz
zsh-35a2f155c3b92e67957325e1f49e409546378e3e.tar.xz
zsh-35a2f155c3b92e67957325e1f49e409546378e3e.tar.zst
zsh-35a2f155c3b92e67957325e1f49e409546378e3e.zip
51214: handle read -d and a delimiter that can't be decoded into a character
Terminate input at the raw byte value of the delimiter. Also document and test the use of an empty string as a way to specify NUL as the delimiter.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5b0af2135..130bec319 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2022-12-16 Oliver Kiddle <opk@zsh.org>
+ * 51214: Doc/Zsh/builtins.yo, Src/builtin.c, Test/B04read.ztst,
+ Test/D07multibyte.ztst: with read -d and a delimiter that can't be
+ decoded into a character terminate input at the raw byte value
+
* Jun T.: 51207: Src/builtin.c, Test/B04read.ztst:
fix for read -d when the delimiter is a byte >= 0x80