diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-03-07 20:06:55 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-03-07 20:06:55 +0100 |
commit | e1cdcfdb172071bafef18b1ac160138c97459b79 (patch) | |
tree | c203ebb30f9c9d997af0e7cda3d0da72897a47ef /acme/bin/source/win/win.c | |
parent | 022087cdcdd39e7904f6970b54152f4aa30fc071 (diff) | |
download | plan9front-e1cdcfdb172071bafef18b1ac160138c97459b79.tar.xz |
acme: split win into winfs and rc script, get rid of lib9p leavefdsopen hack
split the acme win command into a winfs fileserver which
handles /dev/cons emulation and a rc script responsible
for launching the command.
with these changes, the fd fiddling is not neccesary anymore
and we can get rid of the leavefdsopen hack.
Diffstat (limited to 'acme/bin/source/win/win.c')
-rw-r--r-- | acme/bin/source/win/win.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/acme/bin/source/win/win.c b/acme/bin/source/win/win.c index 54f3bda02..1fdd9bb9f 100644 --- a/acme/bin/source/win/win.c +++ b/acme/bin/source/win/win.c @@ -25,15 +25,6 @@ newwindow(void) } void -winsetdump(Window *w, char *dir, char *cmd) -{ - if(dir != nil) - ctlprint(w->ctl, "dumpdir %s\n", dir); - if(cmd != nil) - ctlprint(w->ctl, "dump %s\n", cmd); -} - -void winsetdir(Window *w, char *dir, char *name) { ctlprint(w->ctl, "dumpdir %s\n", dir); |