Adding copyurl and disable-fonts patch

This commit is contained in:
bakkeby 2019-09-16 10:40:16 +02:00
parent ec58f77b6b
commit 35e6403c69
9 changed files with 258 additions and 3 deletions

4
st.c
View file

@ -232,6 +232,8 @@ static uchar utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
static Rune utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000};
static Rune utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
#include "patch/include.h"
ssize_t
xwrite(int fd, const char *s, size_t len)
{
@ -2602,3 +2604,5 @@ redraw(void)
tfulldirt();
draw();
}
#include "patch/include.c"