2013/4/24 Roberto E. Vargas Caballero <k...@shike2.com>:
> You are talking here about our Selection data structure, and you are right,
> if we mark it as not enabled (sel.bx = -1), all the problem will be fixed,
> and maybe in a cleaner way.
> We can test it in tclearregion in this form:
>
>
>
>         for(y = y1; y <= y2; y++) {
>                 term.dirty[y] = 1;
>                 for(x = x1; x <= x2; x++) {
>                         if(selected(y, x))
>                                 selclear(NULL);
>                         term.line[y][x] = term.c.attr;
>                         memcpy(term.line[y][x].c, " ", 2);
>                 }
>         }
>
>
> If all the people like this solution, I can send the patch.
Too late -- I already sent almost that exact patch :P.
Yes, I think this is the right thing to do, because st currently
clears selection on putting character inside it. So, changing a
characted with tclearregion() should clear it as well.

Reply via email to