* Jim Meyering (j...@meyering.net) [20110901 21:35]: > > $ echo 12 | cut --output-delimiter=X -c1,2 > > 12 > > $ echo 12 | LANG=C cut --output-delimiter=X -c1,2 > > 1X2
Found and fixed. The function called for the multibyte case simply had no provision for an output delimiter. Simply copying and modifying the relevant parts of cut_byte did the trick and now the above works in all cases. Philipp