aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2011-06-09 14:27:07 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2011-06-09 14:27:07 +0200
commitce547d3060308419da77465e122db437d7be056b (patch)
tree5c9c8a8bca16c7487f304ea3d3d0bdbe6b33313d
parent4259a3ba3a99da4bc551c9cde6868366fb2c01fa (diff)
downloadst-patched-ce547d3060308419da77465e122db437d7be056b.tar.bz2
st-patched-ce547d3060308419da77465e122db437d7be056b.tar.xz
st-patched-ce547d3060308419da77465e122db437d7be056b.zip
fix segfault with mouse selection. (thx anonymous)
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index b331ead..df8353a 100644
--- a/st.c
+++ b/st.c
@@ -615,7 +615,7 @@ bmotion(XEvent *e) {
615 if(oldey != sel.ey || oldex != sel.ex) { 615 if(oldey != sel.ey || oldex != sel.ex) {
616 int starty = MIN(oldey, sel.ey); 616 int starty = MIN(oldey, sel.ey);
617 int endy = MAX(oldey, sel.ey); 617 int endy = MAX(oldey, sel.ey);
618 drawregion(0, (starty > 0 ? starty : 0), term.col, (sel.ey < term.row ? endy+1 : term.row)); 618 drawregion(0, (starty > 0 ? starty : 0), term.col, (endy < term.row ? endy+1 : term.row));
619 } 619 }
620 } 620 }
621} 621}