mirror of
https://git.busybox.net/busybox
synced 2025-09-14 13:11:38 +02:00
function old new delta parse_stream 2566 2524 -42 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
7 lines
108 B
Text
Executable file
7 lines
108 B
Text
Executable file
# had a parser bug which incorrectly detected ";;"
|
|
case w in
|
|
a) true
|
|
;
|
|
b);;
|
|
esac
|
|
echo Should not be reached
|