mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
externalpipe + reflow: compatibility fix correction ref. #125
This commit is contained in:
parent
f773016680
commit
06bb70e2d1
@ -43,7 +43,7 @@ externalpipe(const Arg *arg)
|
||||
for (n = 0; n < term.row; n++) {
|
||||
bp = term.line[n];
|
||||
#if REFLOW_PATCH
|
||||
lastpos = MIN(tlinelen(TLINE(n)), term.col) - 1;
|
||||
lastpos = MIN(tlinelen(TLINE(n)) + 1, term.col) - 1;
|
||||
#else
|
||||
lastpos = MIN(tlinelen(n) + 1, term.col) - 1;
|
||||
#endif // REFLOW_PATCH
|
||||
|
Loading…
Reference in New Issue
Block a user