tignore window resize; should be elsewhere - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 6322b295cf737c785f39efa978522b0a7da5e6fa
DIR parent 73ac88baa74db4592a521270ab7f565e926132d8
HTML Author: rsc <devnull@localhost>
Date: Mon, 18 Jun 2007 15:19:26 +0000
ignore window resize; should be elsewhere
Diffstat:
M src/cmd/9pserve.c | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
---
DIR diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c
t@@ -260,6 +260,8 @@ ignorepipe(void *v, char *s)
return 1;
if(strcmp(s, "sys: tstp") == 0)
return 1;
+ if(strcmp(s, "sys: window size change") == 0)
+ return 1;
fprint(2, "9pserve %s: %T note: %s\n", addr, s);
return 0;
}