all repos — st @ eeae9b0ceef9e2fec4cb4f1132748c302e5ac702

st (suckless terminal) config

Fix core in multi-line selection on OpenBSD

OpenBSD 5.3 amd64 release version with the most current st
version from git, crash and dump core when selecting multiple
lines whith the cursor.  This happens, because on line 964
of st.c (gp-1)->mode is accessed, although gp is still
pointing at the beginning of the array term.line[y] (see
line 939 for initialization of gp).
Maurice Quennet mjq@gmx.net
commit

eeae9b0ceef9e2fec4cb4f1132748c302e5ac702

parent

8ac0a5f872b0024bab161fa020126013724758ba

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

jump to
M st.cst.c

@@ -962,7 +962,7 @@ * '\r', when something to be pasted is received by

* st. * FIXME: Fix the computer world. */ - if(y < sel.ne.y && !((gp-1)->mode & ATTR_WRAP)) + if(y < sel.ne.y && x > 0 && !((gp-1)->mode & ATTR_WRAP)) *ptr++ = '\n'; /*