aboutsummaryrefslogtreecommitdiff
path: root/x.c.rej
diff options
context:
space:
mode:
Diffstat (limited to 'x.c.rej')
-rw-r--r--x.c.rej27
1 files changed, 0 insertions, 27 deletions
diff --git a/x.c.rej b/x.c.rej
deleted file mode 100644
index 860c2dd..0000000
--- a/x.c.rej
+++ /dev/null
@@ -1,27 +0,0 @@
---- x.c
-+++ x.c
-@@ -1013,11 +1022,23 @@ xinit(int cols, int rows)
- Window parent;
- pid_t thispid = getpid();
- XColor xmousefg, xmousebg;
-+ XWindowAttributes attr;
-+ XVisualInfo vis;
-
- if (!(xw.dpy = XOpenDisplay(NULL)))
- die("can't open display\n");
- xw.scr = XDefaultScreen(xw.dpy);
-- xw.vis = XDefaultVisual(xw.dpy, xw.scr);
-+
-+ if (!(opt_embed && (parent = strtol(opt_embed, NULL, 0)))) {
-+ parent = XRootWindow(xw.dpy, xw.scr);
-+ xw.depth = 32;
-+ } else {
-+ XGetWindowAttributes(xw.dpy, parent, &attr);
-+ xw.depth = attr.depth;
-+ }
-+
-+ XMatchVisualInfo(xw.dpy, xw.scr, xw.depth, TrueColor, &vis);
-+ xw.vis = vis.visual;
-
- /* font */
- if (!FcInit())