aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-02-23unvac: always create writable directoriesRuss Cox1-1/+1
R=rsc http://codereview.appspot.com/4221043
2011-02-16rc: fix $ifs bug introduced with utf-8 codeRuss Cox1-2/+4
R=rsc http://codereview.appspot.com/4187050
2011-02-04eqn: add working mbtowc and wctombRuss Cox2-0/+166
Fixes UTF-8 input files. R=rsc http://codereview.appspot.com/4132042
2011-01-12devdraw: fix flashing during window dragJeff Sickel2-3/+5
R=rsc CC=codebot http://codereview.appspot.com/3922043
2011-01-02factotum: add proto-specific key promptRuss Cox1-0/+2
R=rsc http://codereview.appspot.com/3852042
2011-01-02tr: 32-bit rune fixesRuss Cox1-3/+3
R=rsc http://codereview.appspot.com/3761044
2011-01-02mklatinkbd: fix out of bounds bugRuss Cox1-0/+1
R=rsc http://codereview.appspot.com/3828045
2011-01-02acid: fix buildRuss Cox1-2/+1
R=rsc http://codereview.appspot.com/3784048
2011-01-02libframe: fix line wrap display glitch (Erik Quanstrom)Russ Cox1-1/+9
R=rsc http://codereview.appspot.com/3777044
2011-01-02acid: 4-byte RunesRuss Cox1-7/+10
R=rsc http://codereview.appspot.com/3860041
2011-01-02keyboard(7): document X compose sequencesRuss Cox3-23/+111
Add -x flag to mklatinkbd to generate file for $HOME/.XCompose. Thanks to Anthony Martin, Tony Lainson, and Kris Maglione for legwork. R=rsc http://codereview.appspot.com/3811043
2011-01-02rc: handle 4-byte utf-8Russ Cox3-0/+20
R=rsc http://codereview.appspot.com/3833043
2011-01-02rc: handle utf-8 in $ifsRuss Cox1-8/+16
R=rsc http://codereview.appspot.com/3798046
2010-12-28factotum: update prototab (thanks Erik Quanstrom)Russ Cox1-0/+4
R=rsc http://codereview.appspot.com/3750045
2010-12-07wc: 4-byte utf-8 capable (Erik Quanstrom)Russ Cox1-16/+59
R=rsc http://codereview.appspot.com/3437044
2010-12-07delete 9P2000.uRuss Cox13-327/+64
thanks to Erik Quanstrom R=rsc http://codereview.appspot.com/3469042
2010-12-07auth/factotum: fix password prompt hangRuss Cox1-2/+2
Fixes #51. R=rsc http://codereview.appspot.com/3431044
2010-11-09venti: add mgr (work in progress)Russ Cox1-0/+1021
R=rsc http://codereview.appspot.com/3003041
2010-11-03import: clean up correctlyRuss Cox1-0/+1
R=rsc http://codereview.appspot.com/2875041
2010-10-27mkfiles: fix macargv bufRuss Cox3-5/+3
R=rsc http://codereview.appspot.com/2729042
2010-10-27mac: add 9term.app, Plumb.appRuss Cox4-0/+99
R=rsc http://codereview.appspot.com/2783041
2010-10-13win: another attempt at input modesRuss Cox1-5/+28
R=rsc http://codereview.appspot.com/2476042
2010-10-07libmach: fix warning about preadnRuss Cox1-21/+0
R=rsc http://codereview.appspot.com/2388041
2010-10-07getflags: use shell quotingAnthony Martin1-0/+1
R=rsc CC=codebot http://codereview.appspot.com/2065042
2010-10-07plumber: comment out bogus user name checkRuss Cox1-0/+2
R=rsc http://codereview.appspot.com/2295043
2010-09-24libmach: more mach-o supportRuss Cox5-35/+343
R=rsc http://codereview.appspot.com/2277041
2010-09-10win: add cook/nocookRuss Cox1-5/+14
R=rsc http://codereview.appspot.com/2162042
2010-09-03topng: 64-bit fixRuss Cox1-1/+1
R=rsc http://codereview.appspot.com/2124042
2010-09-039term, win: better echo cancellationRuss Cox6-61/+129
Also just drop \r from output. It's a losing battle to keep turning it off. R=rsc http://codereview.appspot.com/2128042
2010-08-24acme: fix rounding in rows computationRob Pike1-3/+6
R=rsc CC=codebot http://codereview.appspot.com/2007045
2010-08-04sam: use ulong as type of dev consistentlyRuss Cox1-1/+1
Otherwise io.c:39 compares int != ulong, causing spurious file modification warnings when dev doesn't fit in an int. R=r http://codereview.appspot.com/1917045
2010-07-22devdraw: snarf better with ChromeRuss Cox1-5/+4
maybe the code is also actually correct. who knows. R=rsc http://codereview.appspot.com/1875045
2010-07-14acme, sam: fix regexp code for bigger RunemaxRuss Cox2-48/+52
R=r http://codereview.appspot.com/1765042
2010-07-14acme: fix off by one in editcmd, pointer comparison in getch, nextcRuss Cox1-3/+3
R=r http://codereview.appspot.com/868046
2010-07-11lib9: add <sys/dkio.h> for OpenBSDRuss Cox1-0/+1
R=, rsc CC= http://codereview.appspot.com/1762045
2010-07-11tar: rename sstrnlen to avoid OpenBSD compile errorRuss Cox1-5/+5
R=, rsc CC= http://codereview.appspot.com/1810041
2010-06-28This patch fixes unicode, unicode-be and unicode-leMichael Teichgräber1-11/+21
input, and unicode output, which have been broken due to the change of the size of Rune from two bytes to four bytes. (Unicode-le and unicode-be output have not been affected, since they work different, and produce correct output as long as sizeof(Rune) >= 2.) In all of the affected functions an extra array of N elements of type u16int is used to temporarily store the 16-bit unicode data. As this increases stack usage, perhaps a different, slightly more complicated solution might be preferred, where only a single `Rune buf[N]' is used for both temporary storage and the result. R=rsc CC=codebot http://codereview.appspot.com/1574041
2010-06-28tcs: macroman charset fixesAnthony Martin1-5/+5
2126 -> 03a9 # greek capital letter omega 2012 -> 201c # left double quotation mark 00a4 -> 20ac # euro sign f7ff -> f8ff # apple logo R=rsc CC=codebot http://codereview.appspot.com/1233043
2010-06-28hget: use absolute url for POST through a proxyAnthony Martin1-7/+17
R=rsc CC=codebot http://codereview.appspot.com/1282042
2010-06-289p: tflag sorts by mtimeAnthony Martin1-5/+27
R=rsc CC=codebot http://codereview.appspot.com/1265043
2010-06-289term: fix getpts on linuxAnthony Martin1-0/+5
Openpty uses grantpt internally and its behavior is unspecified when a handler is set to catch SIGCHLD. Fixes issue 37. http://code.swtch.com/plan9port/issues/37 R=rsc CC=codebot http://codereview.appspot.com/1209049
2010-05-199term: add -c to force cooked modeDavid Swasey1-1/+4
R=rsc CC=codebot http://codereview.appspot.com/1044043
2010-05-11mailfs: try tlsclient program before stunnelRuss Cox1-1/+2
R=rsc http://codereview.appspot.com/1169043
2010-04-13vac: debug printsDavid Swasey1-7/+7
R=rsc CC=codebot http://codereview.appspot.com/816041
2010-04-13vac: eliminated vac cache size 128. vacfsopen used to take ncache rather ↵David Swasey1-5/+6
than cachemem R=rsc CC=codebot http://codereview.appspot.com/817041
2010-04-139term: cut, snarf, and paste with keyboard on MacDavid Swasey1-0/+16
R=rsc CC=codebot http://codereview.appspot.com/854042
2010-04-09fix build on SunOS (Sparc)Arvindh Rajesh Tamilmani2-0/+2
R=rsc CC=codebot http://codereview.appspot.com/882044
2010-04-02devdraw: only one flushproc, please (OS X)Russ Cox1-1/+5
R=rsc http://codereview.appspot.com/799045
2010-03-19win: scrollEoghan Sherry1-0/+3
R=rsc CC=codebot http://codereview.appspot.com/643041
2010-03-18acme: attempt to fix Put mtime skew on NFSRuss Cox1-0/+13
R=r http://codereview.appspot.com/583043