all repos — st @ 8d21ced08527e79489f37b7a4ad19355bca2207c

st (suckless terminal) config

Correcting the bitmask value check.
Christoph Lohmann 20h@r-36.net
commit

8d21ced08527e79489f37b7a4ad19355bca2207c

parent

457969381869f9f3ecbb462bf40f053f2a748a02

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -3714,7 +3714,7 @@ if(bitm & HeightValue)

xw.fh = (int)hr; if(bitm & XNegative && xw.fx == 0) xw.fx = -1; - if(bitm & XNegative && xw.fy == 0) + if(bitm & YNegative && xw.fy == 0) xw.fy = -1; if(xw.fh != 0 && xw.fw != 0)