st-flexipatch

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

commit fa3d47596d26472868934b96549806942e16d922
parent 9e18ce3cb1d48a6c3d071c409ff4821a3a255b04
Author: bakkeby <bakkeby@gmail.com>
Date:   Tue, 24 Mar 2020 13:49:01 +0100

minor code-style, initialize var at the top of function (2d4ee4)

Diffstat:
Mst.c | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/st.c b/st.c @@ -1955,7 +1955,7 @@ csireset(void) void strhandle(void) { - char *p = NULL; + char *p = NULL, *dec; int j, narg, par; term.esc &= ~(ESC_STR_END|ESC_STR); @@ -1973,8 +1973,6 @@ strhandle(void) return; case 52: if (narg > 2) { - char *dec; - dec = base64dec(strescseq.args[2]); if (dec) { xsetsel(dec);