aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/parser.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-09-10 01:24:11 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-09-10 01:24:11 +0000
commit18e4c9579e52417fd5931d4bde611b94f50684c0 (patch)
tree34149b17c1927c43b2dd2f20f5d9a5cf6cdd4c56 /bin/sh/parser.c
parent83fa788e4d07994b4a3f2c846edda336a33093ff (diff)
Notes
Diffstat (limited to 'bin/sh/parser.c')
-rw-r--r--bin/sh/parser.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/bin/sh/parser.c b/bin/sh/parser.c
index d24508e4c1a3..1ffa2c3dc19c 100644
--- a/bin/sh/parser.c
+++ b/bin/sh/parser.c
@@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: parser.c,v 1.12 1996/09/01 10:21:31 peter Exp $
+ * $Id: parser.c,v 1.13 1996/09/03 14:15:57 peter Exp $
*/
#ifndef lint
@@ -1141,6 +1141,7 @@ parsesub: {
#ifndef GDB_HACK
static const char types[] = "}-+?=";
#endif
+ int bracketed_name = 0; /* used to handle ${[0-9]*} variables */
c = pgetc();
if (c != '(' && c != '{' && !is_name(c) && !is_special(c)) {
@@ -1159,6 +1160,7 @@ parsesub: {
USTPUTC(VSNORMAL, out);
subtype = VSNORMAL;
if (c == '{') {
+ bracketed_name = 1;
c = pgetc();
if (c == '#') {
if ((c = pgetc()) == '}')
@@ -1174,6 +1176,16 @@ parsesub: {
STPUTC(c, out);
c = pgetc();
} while (is_in_name(c));
+ } else if (is_digit(c)) {
+ if (bracketed_name) {
+ do {
+ STPUTC(c, out);
+ c = pgetc();
+ } while (is_digit(c));
+ } else {
+ STPUTC(c, out);
+ c = pgetc();
+ }
} else {
if (! is_special(c))
badsub: synerror("Bad substitution");