diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-04 13:07:27 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-04 13:07:27 +0000 |
commit | 400c5b6fc6aea218fdfbc14ac709a848d9c696b0 (patch) | |
tree | b3217aa77c02461415d67bed96d3599d96b796b4 /shell/README | |
parent | 6e6d331d97aa230625c9b50c73f5df9251b8df4b (diff) | |
download | busybox-w32-400c5b6fc6aea218fdfbc14ac709a848d9c696b0.tar.gz busybox-w32-400c5b6fc6aea218fdfbc14ac709a848d9c696b0.tar.bz2 busybox-w32-400c5b6fc6aea218fdfbc14ac709a848d9c696b0.zip |
hush: add parse tree debug print
Diffstat (limited to 'shell/README')
-rw-r--r-- | shell/README | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/README b/shell/README index 989587a4f..c3e7132ce 100644 --- a/shell/README +++ b/shell/README | |||
@@ -1,6 +1,10 @@ | |||
1 | Various bits of what is known about busybox shells, in no particular order. | 1 | Various bits of what is known about busybox shells, in no particular order. |
2 | 2 | ||
3 | 2007-05-03 | 3 | 2007-05-03 |
4 | hush: new bug spotted: Ctrl-C on "while true; do true; done" kills shell, | ||
5 | not just the loop. | ||
6 | |||
7 | 2007-05-03 | ||
4 | hush: update on "sleep 1 | exit 3; echo $?" bug. | 8 | hush: update on "sleep 1 | exit 3; echo $?" bug. |
5 | parse_stream_outer() repeatedly calls parse_stream(). | 9 | parse_stream_outer() repeatedly calls parse_stream(). |
6 | parse_stream() is now fixed to stop on ';' in this example, | 10 | parse_stream() is now fixed to stop on ';' in this example, |