- fix bug where we did not reject invalid classes like '[[:alpha'

- debloat while at it:
   text    data     bss     dec     hex filename
   1554       0      19    1573     625 tr.o.oorig
   1357       0      16    1373     55d tr.o
This commit is contained in:
Bernhard Reutner-Fischer
2007-03-30 14:43:27 +00:00
parent 52a9db6bb8
commit eceecea568
6 changed files with 115 additions and 88 deletions

View File

@@ -0,0 +1,4 @@
echo testing | tr -d '[[:alnum:]]' > logfile.gnu
echo testing | busybox tr -d '[[:alnum:]]' > logfile.bb
diff -u logfile.gnu logfile.bb