aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 92854b4..8e9e895 100644
--- a/st.c
+++ b/st.c
@@ -3096,7 +3096,7 @@ drawregion(int x1, int y1, int x2, int y2) {
3096 ic = ib = ox = 0; 3096 ic = ib = ox = 0;
3097 for(x = x1; x < x2; x++) { 3097 for(x = x1; x < x2; x++) {
3098 new = term.line[y][x]; 3098 new = term.line[y][x];
3099 if(ena_sel && *(new.c) && selected(x, y)) 3099 if(ena_sel && selected(x, y))
3100 new.mode ^= ATTR_REVERSE; 3100 new.mode ^= ATTR_REVERSE;
3101 if(ib > 0 && (ATTRCMP(base, new) 3101 if(ib > 0 && (ATTRCMP(base, new)
3102 || ib >= DRAW_BUF_SIZ-UTF_SIZ)) { 3102 || ib >= DRAW_BUF_SIZ-UTF_SIZ)) {