all repos — st @ 149c0d3aedffe69b625ef95868daae200941d5f5

st (suckless terminal) config

Fix commented out code
Alexander Krotov ilabdsf@gmail.com
commit

149c0d3aedffe69b625ef95868daae200941d5f5

parent

f2bfd513b14a2aa27796670235557a550b4189db

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

jump to
M st.cst.c

@@ -2537,7 +2537,7 @@ term.alt[i] = xrealloc(term.alt[i], col * sizeof(Glyph));

} /* 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)); }