Commit Briefs

Russ Cox

ed(1): fix documentation for list mode

I changed from 6 to 8 digits but forgot to update the man page.


Russ Cox

ed: handle Unicode beyond the BMP correctly in list mode.

List mode was constrained to the BMP. This change introduces the following new list mode convention, using Go string literal syntax: Non-printing ASCII characters display as \xhh. Non-ASCII characters in the BMP display as \uhhhh. Characters beyond the BMP display as \Uhhhhhhhh.


Russ Cox

devdraw: accept 5- and 6-byte Unicode hex values

Alt X 1234 for U+1234 Alt X X 12345 for U+12345 Alt X X X 103456 for U+103456.


GitHub

fontsrv: scale f->originy to match f->height on x11

Co-authored-by: dzklaim <smmoth.rp@gmail.com>


Russ Cox

fontsrv: handle non-BMP runes on X11

Have to adjust algorithms to deal with much larger number of subfont files as well.



Russ Cox

man: update man pages to say $HOME when accurate

Fixes #386.


Russ Cox

devdraw, libdraw: handle keyboard runes > U+FFFF

Runes in Plan 9 were limited to the 16-bit BMP when I drew up the RPC protocol between graphical programs and devdraw a long time ago. Now that they can be 32-bit, use a 32-bit wire encoding too. A new message number to avoid problems with other clients (like 9fans.net/go). Add keyboard shortcut alt : , for U+1F602, face with tears of joy, to test that it all works.



Russ Cox

build: use installbsd instead of install on AIX

Even in mkmk.sh.


Russ Cox

9c: fix tab




Russ Cox

rc: avoid problematic internal names "var", "thread"

For AIX.


Russ Cox

acme: avoid global named "class"

For AIX.