Remove one indentation level in getsel().

This commit is contained in:
noname 2014-04-27 15:40:23 +04:00 committed by Roberto E. Vargas Caballero
parent 6681af165b
commit 74962bf566
1 changed files with 48 additions and 49 deletions

7
st.c
View File

@ -922,9 +922,9 @@ getsel(void) {
int x, y, bufsize, size, i, ex; int x, y, bufsize, size, i, ex;
Glyph *gp, *last; Glyph *gp, *last;
if(sel.ob.x == -1) { if(sel.ob.x == -1)
str = NULL; return NULL;
} else {
bufsize = (term.col+1) * (sel.ne.y-sel.nb.y+1) * UTF_SIZ; bufsize = (term.col+1) * (sel.ne.y-sel.nb.y+1) * UTF_SIZ;
ptr = str = xmalloc(bufsize); ptr = str = xmalloc(bufsize);
@ -975,7 +975,6 @@ getsel(void) {
} }
} }
*ptr = 0; *ptr = 0;
}
return str; return str;
} }