From 8d06917df748f961943870eb102d5f283737ce19 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Mon, 14 Aug 2023 03:02:26 +0300 Subject: Cleaned up the repository and patched boxdraw successfully. Changes to be committed: modified: Makefile new file: Makefile.orig deleted: boxdraw.c deleted: boxdraw_data.h modified: config.def.h.orig deleted: config.def.h.rej modified: st.c modified: st.c.orig deleted: st.c.rej modified: st.h modified: st.h.orig deleted: st.h.rej deleted: st.o modified: x.c modified: x.c.orig deleted: x.o --- st.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'st.h') diff --git a/st.h b/st.h index b3ca24a..faf8633 100644 --- a/st.h +++ b/st.h @@ -33,7 +33,6 @@ enum glyph_attribute { ATTR_WRAP = 1 << 8, ATTR_WIDE = 1 << 9, ATTR_WDUMMY = 1 << 10, - ATTR_BOXDRAW = 1 << 11, ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT, }; @@ -115,14 +114,6 @@ void *xmalloc(size_t); void *xrealloc(void *, size_t); char *xstrdup(const char *); -int isboxdraw(Rune); -ushort boxdrawindex(const Glyph *); -#ifdef XFT_VERSION -/* only exposed to x.c, otherwise we'll need Xft.h for the types */ -void boxdraw_xinit(Display *, Colormap, XftDraw *, Visual *); -void drawboxes(int, int, int, int, XftColor *, XftColor *, const XftGlyphFontSpec *, int); -#endif - /* config.h globals */ extern char *utmp; extern char *scroll; @@ -136,5 +127,5 @@ extern unsigned int tabspaces; extern unsigned int defaultfg; extern unsigned int defaultbg; extern unsigned int defaultcs; -extern float alpha; extern const int boxdraw, boxdraw_bold, boxdraw_braille; +extern float alpha; -- cgit v1.2.3