st
simple terminal
git clone https://9o.is/git/st.git
commit 8f2e64297198c9d87cfe77d9acfc1fd1d44dcea1 parent d99a57c367bced838ce418da72f6726c0cfc2aeb Author: Christoph Lohmann <20h@r-36.net> Date: Tue, 20 Aug 2013 18:18:48 +0200 Correcting the bitmask value check. Diffstat:
| M | st.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -3714,7 +3714,7 @@ main(int argc, char *argv[]) { 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)