summaryrefslogtreecommitdiff
path: root/shells/bash/files
diff options
context:
space:
mode:
authorOliver Eikemeier <eik@FreeBSD.org>2004-11-02 10:24:50 +0000
committerOliver Eikemeier <eik@FreeBSD.org>2004-11-02 10:24:50 +0000
commitf0c4bac25eec47d4fcb4534e5ad2a67536254f10 (patch)
tree01b1124609fec417775dd13647c38be449d46c24 /shells/bash/files
parentUpdate to 2004.10.25 (diff)
- update to patchlevel 15
Diffstat (limited to 'shells/bash/files')
-rw-r--r--shells/bash/files/patch-braces.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/shells/bash/files/patch-braces.c b/shells/bash/files/patch-braces.c
deleted file mode 100644
index 49cf804cc39f..000000000000
--- a/shells/bash/files/patch-braces.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#
-# Fix brace expansion following quoted text
-#
-# http://lists.gnu.org/archive/html/bug-bash/2004-09/msg00255.html
-#
---- braces.c.orig Wed Sep 8 11:07:53 2004
-+++ braces.c Fri Sep 17 18:42:36 2004
-@@ -402,7 +402,8 @@
- {
- pass_next = 1;
- i++;
-- level++;
-+ if (quoted == 0)
-+ level++;
- continue;
- }
- #endif