summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-08-14 03:02:26 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-08-14 03:02:26 +0300
commit8d06917df748f961943870eb102d5f283737ce19 (patch)
tree13c4d42318a697f2173c3745cda77f1ea9b94f93 /st.h
parentb40ce8559698d1442ced6e537fb18091f1343fb8 (diff)
Cleaned up the repository and patched boxdraw successfully.0.9-Mainline
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
Diffstat (limited to 'st.h')
-rw-r--r--st.h11
1 files changed, 1 insertions, 10 deletions
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;