diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-09-20 02:12:12 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-09-20 02:12:12 +0000 |
commit | f4a713c6767c6fb6eefc8ebfd0c5ae89af0ce061 (patch) | |
tree | cdc871579691e471a2294e357f712a85184163ac /x11/rxvt | |
parent | fde44a53564410729889d998c3f77e41a7ff5dd0 (diff) | |
download | pkgsrc-f4a713c6767c6fb6eefc8ebfd0c5ae89af0ce061.tar.gz |
Fix bug that only seems to happen with fvwm2 if "NoHandles" is used
on rxvt windows. Patch contributed by Geoff Wing <gcw@rxvt.org> in
private mail, and will be part of next rxvt release.
Diffstat (limited to 'x11/rxvt')
-rw-r--r-- | x11/rxvt/files/patch-sum | 3 | ||||
-rw-r--r-- | x11/rxvt/patches/patch-ae | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/rxvt/files/patch-sum b/x11/rxvt/files/patch-sum index 048421ccc2f..cd2ae69e981 100644 --- a/x11/rxvt/files/patch-sum +++ b/x11/rxvt/files/patch-sum @@ -1,6 +1,7 @@ -$NetBSD: patch-sum,v 1.5 2000/08/30 00:01:05 wiz Exp $ +$NetBSD: patch-sum,v 1.6 2000/09/20 02:12:12 hubertf Exp $ MD5 (patch-aa) = 4ab517329bc6964782e53830172ca8eb MD5 (patch-ab) = 585f973ef2f919770dcef7c8e26c1257 MD5 (patch-ac) = 18a2d1ff2b4416104bd59a25948e6013 MD5 (patch-ad) = 1cbe324406d61570d052c4fb0b449791 +MD5 (patch-ae) = 4f8d3cc8f4b71e73d454ccd67aec3846 diff --git a/x11/rxvt/patches/patch-ae b/x11/rxvt/patches/patch-ae new file mode 100644 index 00000000000..916ed68ba17 --- /dev/null +++ b/x11/rxvt/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.4 2000/09/20 02:12:12 hubertf Exp $ + +--- src/command.c.orig Wed Sep 20 03:59:35 2000 ++++ src/command.c +@@ -1395,6 +1395,8 @@ + am_transparent = 0; + /* XXX: also turn off Opt_transparent? */ + } else { ++ if (i > 1) ++ sleep(1); + D_X((stderr, "InheritPixmap Turning on (%d parents)", i - 1)); + for (n = 0; n < i; n++) + XSetWindowBackgroundPixmap(Xdisplay, TermWin.parent[n], |