summaryrefslogtreecommitdiff
path: root/shells/bash/files
diff options
context:
space:
mode:
authorOliver Eikemeier <eik@FreeBSD.org>2004-11-11 12:04:21 +0000
committerOliver Eikemeier <eik@FreeBSD.org>2004-11-11 12:04:21 +0000
commit70f1c1f0b79cbd8ecfd757cd30f5c029d72668e4 (patch)
treea66c565c586117ce61f9b0db4af9208af13032c6 /shells/bash/files
parent- Update to 5.26.0 (diff)
- update to patchlevel 16 (replacing FreeBSD subst.c patch)
- use system readline on -CURRENT [1] Submitted by: sf [1]
Diffstat (limited to 'shells/bash/files')
-rw-r--r--shells/bash/files/patch-subst.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/shells/bash/files/patch-subst.c b/shells/bash/files/patch-subst.c
deleted file mode 100644
index b55b2f5fa123..000000000000
--- a/shells/bash/files/patch-subst.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# Fix broken array expansion
-#
-# http://lists.gnu.org/archive/html/bug-bash/2004-09/msg00097.html
-#
---- subst.c.orig Thu Aug 12 13:36:17 2004
-+++ subst.c Thu Sep 9 11:54:22 2004
-@@ -4900,7 +4900,7 @@
- case VT_ARRAYVAR:
- a = (ARRAY *)value;
- /* For arrays, the first value deals with array indices. */
-- len = array_max_index (a); /* arrays index from 0 to n - 1 */
-+ len = array_max_index (a) + 1; /* arrays index from 0 to n - 1 */
- break;
- #endif
- }