diff options
author | Russ Cox <rsc@swtch.com> | 2012-10-20 13:41:25 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-10-20 13:41:25 -0400 |
commit | 497cd6b40903936f104e1f6a3fafbfdd48fa5247 (patch) | |
tree | 66a5196933d4fb5ac81c69bc13570335d22a3d9f /dist | |
parent | 220c15d2b746878a943f311e6f66b1480e46491d (diff) | |
download | plan9port-497cd6b40903936f104e1f6a3fafbfdd48fa5247.tar.gz plan9port-497cd6b40903936f104e1f6a3fafbfdd48fa5247.tar.bz2 plan9port-497cd6b40903936f104e1f6a3fafbfdd48fa5247.zip |
INSTALL: don't try to use \b in acme window
R=rsc
http://codereview.appspot.com/6734051
Diffstat (limited to 'dist')
-rw-r--r-- | dist/isum.awk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dist/isum.awk b/dist/isum.awk index 7f774561..0d2f8721 100644 --- a/dist/isum.awk +++ b/dist/isum.awk @@ -8,6 +8,8 @@ BEGIN { statuslen = 0 debug = 0 updates = "/dev/stderr" + if(ENVIRON["winid"] != "") # running in acme window + updates = "" } function myflush(f) |