about summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2017-01-03 14:43:41 +0000
committerPeter Stephenson <pws@zsh.org>2017-01-03 14:43:41 +0000
commite90a512aa600580e25617d3a7763c5f0cd5bccd2 (patch)
treecc4644d59ff1e5390935418f49ae20aad2ff4995 /ChangeLog
parent8d4c98540de9bcdba8565facc91fbc45855d27e2 (diff)
downloadzsh-e90a512aa600580e25617d3a7763c5f0cd5bccd2.tar.gz
zsh-e90a512aa600580e25617d3a7763c5f0cd5bccd2.tar.xz
zsh-e90a512aa600580e25617d3a7763c5f0cd5bccd2.zip
40265: Fix problems with pure string in patterns with Meta.
Copy instead of relying on jiggery pokery with memory reallocation.

Problem was triggering with string ending with Dash converted to -.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f3c9c5654..bec87b8ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2017-01-03  Peter Stephenson  <p.stephenson@samsung.com>
 
+	* 40265: Src/pattern.c: fix continuing problems with Meta characters
+	in pattern that resolves to a string by copying source string.
+	Triggered by string that (correctly) turned Dash into '-'.
+
 	* Paulo Andrade: 40260: Src/prompt.c: Set newly allocated
 	space in prompt buffer to zero as it may be tested.