summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-03-25 07:01:47 +0000
committerTim Harder <radhermit@gentoo.org>2012-03-25 07:01:47 +0000
commitd5536b01f9264feb08dbef479d763c1ec01d63bc (patch)
treeef8d3d961aae51521ccc7efa35f4daa841bd0c58 /app-shells/zsh/files
parentOnly add ncurses dep when the minimal use flag is disabled (bug #409589). (diff)
downloadgentoo-2-d5536b01f9264feb08dbef479d763c1ec01d63bc.tar.gz
gentoo-2-d5536b01f9264feb08dbef479d763c1ec01d63bc.tar.bz2
gentoo-2-d5536b01f9264feb08dbef479d763c1ec01d63bc.zip
Remove old.
(Portage version: 2.2.0_alpha95/cvs/Linux x86_64)
Diffstat (limited to 'app-shells/zsh/files')
-rw-r--r--app-shells/zsh/files/4.3.11-subst.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/app-shells/zsh/files/4.3.11-subst.patch b/app-shells/zsh/files/4.3.11-subst.patch
deleted file mode 100644
index d9544cc445bb..000000000000
--- a/app-shells/zsh/files/4.3.11-subst.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Bugs-Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=352056
---- a/Src/subst.c
-+++ b/Src/subst.c
-@@ -2814,12 +2814,14 @@
- zerr("invalid length: %s", check_offset);
- return NULL;
- }
-- length = mathevali(check_offset);
-- if (errflag)
-- return NULL;
-- if (length < (zlong)0) {
-- zerr("invalid length: %s", check_offset);
-- return NULL;
-+ if (check_offset) {
-+ length = mathevali(check_offset);
-+ if (errflag)
-+ return NULL;
-+ if (length < (zlong)0) {
-+ zerr("invalid length: %s", check_offset);
-+ return NULL;
-+ }
- }
- }
- if (horrible_offset_hack) {