aboutsummaryrefslogtreecommitdiff
path: root/src/libdraw/x11-init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdraw/x11-init.c')
-rw-r--r--src/libdraw/x11-init.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libdraw/x11-init.c b/src/libdraw/x11-init.c
index e402dee2..73df170f 100644
--- a/src/libdraw/x11-init.c
+++ b/src/libdraw/x11-init.c
@@ -26,6 +26,15 @@ _initdisplay(void (*error)(Display*, char*), char *label)
Display *d;
Memimage *m;
+ /*
+ * This rfork(RFNOTEG) isn't exactly right,
+ * but we need some way to signal window
+ * closes. Right now we post a hangup
+ * note to the note group, which kills a whole
+ * lot more than just the current program
+ * if we don't do this.
+ */
+ rfork(RFNOTEG);
memimageinit();
d = mallocz(sizeof(Display), 1);