mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
Small fixes
This commit is contained in:
parent
4f30f3b444
commit
1ed1c638a8
2 changed files with 11 additions and 3 deletions
11
bin/label
11
bin/label
|
@ -1,7 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
case `uname` in
|
||||
SunOS)
|
||||
awk=nawk
|
||||
;;
|
||||
*)
|
||||
awk=awk
|
||||
;;
|
||||
esac
|
||||
|
||||
label() {
|
||||
echo "$@" | awk '{printf("\033];%s\007", $0);}'
|
||||
echo "$@" | $awk '{printf("\033];%s\007", $0);}'
|
||||
}
|
||||
|
||||
label "$@"
|
||||
|
|
|
@ -407,9 +407,8 @@ xattach(char *label)
|
|||
r.max.x = wattr.width;
|
||||
r.max.y = wattr.height;
|
||||
}
|
||||
fprint(2, "new rect %dx%d\n", r.max.x, r.max.y);
|
||||
}else
|
||||
fprint(2, "bad attrs\n");
|
||||
fprint(2, "XGetWindowAttributes: bad attrs\n");
|
||||
|
||||
/*
|
||||
* Allocate our local backing store.
|
||||
|
|
Loading…
Reference in a new issue