Addressing relativeborder plus ligatures combo conflict
This commit is contained in:
parent
636edb09c2
commit
dbd1d6ece0
3
st.h
3
st.h
|
@ -311,9 +311,6 @@ void boxdraw_xinit(Display *, Colormap, XftDraw *, Visual *);
|
||||||
void drawboxes(int, int, int, int, XftColor *, XftColor *, const XftGlyphFontSpec *, int);
|
void drawboxes(int, int, int, int, XftColor *, XftColor *, const XftGlyphFontSpec *, int);
|
||||||
#endif // XFT_VERSION
|
#endif // XFT_VERSION
|
||||||
#endif // BOXDRAW_PATCH
|
#endif // BOXDRAW_PATCH
|
||||||
#if RELATIVEBORDER_PATCH
|
|
||||||
int borderpx;
|
|
||||||
#endif // RELATIVEBORDER_PATCH
|
|
||||||
|
|
||||||
/* config.h globals */
|
/* config.h globals */
|
||||||
extern char *utmp;
|
extern char *utmp;
|
||||||
|
|
7
x.c
7
x.c
|
@ -189,6 +189,9 @@ static int oldbutton = 3; /* button event on startup: 3 = release */
|
||||||
#if VISUALBELL_1_PATCH
|
#if VISUALBELL_1_PATCH
|
||||||
static int bellon = 0; /* visual bell status */
|
static int bellon = 0; /* visual bell status */
|
||||||
#endif // VISUALBELL_1_PATCH
|
#endif // VISUALBELL_1_PATCH
|
||||||
|
#if RELATIVEBORDER_PATCH
|
||||||
|
int borderpx;
|
||||||
|
#endif // RELATIVEBORDER_PATCH
|
||||||
|
|
||||||
#include "patch/x_include.c"
|
#include "patch/x_include.c"
|
||||||
|
|
||||||
|
@ -1999,10 +2002,6 @@ xfinishdraw(void)
|
||||||
GC gc;
|
GC gc;
|
||||||
#endif // SIXEL_PATCH
|
#endif // SIXEL_PATCH
|
||||||
|
|
||||||
#if VISUALBELL_3_PATCH
|
|
||||||
if (vbellmode == 3 && win.vbellset)
|
|
||||||
xdrawvbell();
|
|
||||||
#endif // VISUALBELL_3_PATCH
|
|
||||||
#if !SINGLE_DRAWABLE_BUFFER_PATCH
|
#if !SINGLE_DRAWABLE_BUFFER_PATCH
|
||||||
XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, win.w,
|
XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, win.w,
|
||||||
win.h, 0, 0);
|
win.h, 0, 0);
|
||||||
|
|
Loading…
Reference in New Issue