summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVon Random <von@vdrandom.org>2019-01-14 14:39:55 +0300
committerVon Random <von@vdrandom.org>2019-01-14 14:39:55 +0300
commit39d5aae8fb32a11866dcfb59846944b882e6b802 (patch)
treeaa092beeec897b79d1d40d1aa0fdf931c8873622
parent8542f353cad563117bc726f338fbc4aaaae60e4a (diff)
avoid boxdraw patch for now
-rw-r--r--config.h8
-rwxr-xr-xmakest4
2 files changed, 2 insertions, 10 deletions
diff --git a/config.h b/config.h
index e5d9b5d..742eea3 100644
--- a/config.h
+++ b/config.h
@@ -61,14 +61,6 @@ static unsigned int blinktimeout = 0;
static unsigned int cursorthickness = 1;
/*
- * 1: custom-draw (without using the font) most of the lines/blocks characters
- * for gapless alignment between cells. This includes all the codepoints at
- * U+2500 - U+259F except dashes, diagonals and shades.
- * 0: disable (render all glyphs normally from the font).
- */
-const int boxdraw = 1;
-
-/*
* bell volume. It must be a value between -100 and 100. Use 0 for disabling
* it
*/
diff --git a/makest b/makest
index 126a0d7..422ba78 100755
--- a/makest
+++ b/makest
@@ -4,7 +4,7 @@ ST_REPO=https://git.suckless.org/st
ST_SRC=$PWD/st
ST_CFG=$PWD/config.h
PATCHLIST=(
- st-boxdraw.patch
+ #st-boxdraw.patch
st-bright-bold-text.patch
st-disable-bold-italic-fonts.patch
st-disable-intensity-styles.patch
@@ -26,7 +26,7 @@ fi
cp $ST_CFG .
for patch in $PATCHLIST; do
- patch -p1 -i ../$patch
+ patch --no-backup-if-mismatch -p1 -i ../$patch
done
make $MAKE_OPTS ${*:-install}