aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-23 20:32:09 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-23 20:32:09 +0000
commitb80bdec29037155df3cda15949b812b9299fdab6 (patch)
tree68208146cb391cdc03aaaa89c63f4cdecf70255a /shell
parent85c4e72ec3a999d9ba8641b6f141c43621d9ea2b (diff)
downloadbusybox-w32-b80bdec29037155df3cda15949b812b9299fdab6.tar.gz
busybox-w32-b80bdec29037155df3cda15949b812b9299fdab6.tar.bz2
busybox-w32-b80bdec29037155df3cda15949b812b9299fdab6.zip
Patch from larry to fix some grammar errors.
git-svn-id: svn://busybox.net/trunk/busybox@2715 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/lash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/lash.c b/shell/lash.c
index f1200ba95..3a421b372 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1076,9 +1076,9 @@ static int expand_arguments(char *command)
1076 else 1076 else
1077 var = itoa(last_bg_pid); 1077 var = itoa(last_bg_pid);
1078 break; 1078 break;
1079 /* Everything else like $$, $#, $[0-9], etc should all be 1079 /* Everything else like $$, $#, $[0-9], etc. should all be
1080 * expanded by wordexp(), so we can in theory skip that stuff 1080 * expanded by wordexp(), so we can in theory skip that stuff
1081 * here, but just to be on the safe side (i.e. since uClibc 1081 * here, but just to be on the safe side (i.e., since uClibc
1082 * wordexp doesn't do this stuff yet), lets leave it in for 1082 * wordexp doesn't do this stuff yet), lets leave it in for
1083 * now. */ 1083 * now. */
1084 case '$': 1084 case '$':