st
simple terminal
git clone https://9o.is/git/st.git
commit 3b6e26bcfa6da9b0238112e7769d913d555077af parent 94838cc2cef28a1395571a635769933abcfdcc6f Author: Alexander Krotov <ilabdsf@gmail.com> Date: Sat, 25 Mar 2017 23:02:42 +0300 Fix commented out code Diffstat:
| M | st.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -2537,7 +2537,7 @@ tresize(int col, int row) } /* allocate any new rows */ - for (/* i == minrow */; i < row; i++) { + for (/* i = minrow */; i < row; i++) { term.line[i] = xmalloc(col * sizeof(Glyph)); term.alt[i] = xmalloc(col * sizeof(Glyph)); }