summaryrefslogtreecommitdiff
path: root/sys/src/cmd/acme/regx.c
AgeCommit message (Collapse)Author
2014-04-01sam, acme: fix character classes quoting for 21-bit runescinap_lenrek
quote handling was broken with 21-bit runes. nextrec() returned quoted rune as long rune | (Runemax+1) to escape it. with 16-bit runes, storing that long into 16-bit Rune would automatically remove the escaping, but with 21-bit runes, Rune is uint32 so the escaping would remain. we now use (Runemask+1) instead, and mask the escaping off explicitely when storing back to Rune.
2013-04-24make all the commands agnostic about Rune width. (from sources)cinap_lenrek
2012-12-31fix utf and rune handling in preparation for 32bit runescinap_lenrek
2011-03-30Import sources from 2011-03-30 iso image - libTaru Karttunen
2011-03-30Import sources from 2011-03-30 iso imageTaru Karttunen