On Tue Oct 2 18:46:26 EDT 2012, [email protected] wrote: > Edit (or something in its chain) appears to be broken on buffer > boundary in p9p and in plan9. To test: > > $ perl -e '{print "A"x1023;}' > t.txt # for plan9 acme replace 1023 with 8191 > $ echo [any multibyte utf rune, for example Щ] >> t.txt
or with ubiquitous tools and codepoints
awk 'BEGIN{for(i = 0; i < 8191; i++) printf "a"; print "☺"}' > m
- erik
