commit 268fa933851bab18609b69064e1cc4299f7de32d
parent 08708877939323c1e1cb87210193ec25fc472ff7
Author: rsc <devnull@localhost>
Date: Tue, 25 Nov 2003 20:30:11 +0000
Fix X11 clipboard again.
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/libdraw/x11-init.c b/src/libdraw/x11-init.c
@@ -378,7 +378,7 @@ xattach(char *label)
/*
* Look up clipboard atom.
*/
- _x.clipboard = XInternAtom(_x.display, "CLIPBOARD", True);
+ _x.clipboard = XInternAtom(_x.display, "CLIPBOARD", False);
/*
* Lots of display connections for various procs.
diff --git a/src/mkone b/src/mkone
@@ -11,6 +11,7 @@ install:V: $TARG.install
$BIN/%: $O.%
$INSTALL $O.$stem $BIN/$stem
+CLEANFILES=$CLEANFILES $PROG
NUKEFILES=$NUKEFILES $BIN/$TARG
<$PLAN9/src/mkcommon