Fixed copying empty lines inside selection.

The code was assuming that empty lines have implicit wrap-around attribute.

Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com>
This commit is contained in:
Alexander 2014-05-26 09:23:56 +04:00 committed by Roberto E. Vargas Caballero
parent d03aa8d20b
commit 2411308bd2
1 changed files with 1 additions and 1 deletions

2
st.c
View File

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