git: 9front

Download patch

ref: 6e5f4c890d749b67a3ccb301e2dfb80d04f14bcb
parent: e73241c2f0697981f711da58b5452fe4168e077c
author: cinap_lenrek <cinap_lenrek@localhost>
date: Mon May 9 09:15:51 EDT 2011

dont send \0 rune to rawchan

--- a/sys/src/cmd/aux/kbdfs.c
+++ b/sys/src/cmd/aux/kbdfs.c
@@ -377,6 +377,7 @@
 	while(recv(keychan, &key) > 0){
 		if(key.down){
 			switch(key.r){
+			case No:
 			case Caps:
 			case Num:
 			case Shift:
--