st-flexipatch

My st-flexipatch configuration
git clone git://git.ethandl.dev/st-flexipatch
Log | Files | Refs | README | LICENSE

commit 2797bd314489885ff53847beb876c6731f830223
parent fe6e6324d717e01deff6b05ad3e96cd09998d348
Author: bakkeby <bakkeby@gmail.com>
Date:   Mon, 20 Apr 2020 10:30:19 +0200

Fix style issue

Diffstat:
Mst.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/st.c b/st.c @@ -388,7 +388,8 @@ static const char base64_digits[] = { char base64dec_getc(const char **src) { - while (**src && !isprint(**src)) (*src)++; + while (**src && !isprint(**src)) + (*src)++; return **src ? *((*src)++) : '='; /* emulate padding if string ends */ }