pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3959a99
)
fix segfault with mouse selection. (thx anonymous)
author
Aurélien Aptel
<aurelien.aptel@gmail.com>
Thu, 9 Jun 2011 12:27:07 +0000
(14:27 +0200)
committer
Aurélien Aptel
<aurelien.aptel@gmail.com>
Thu, 9 Jun 2011 12:27:07 +0000
(14:27 +0200)
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
b331ead
..
df8353a
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-615,7
+615,7
@@
bmotion(XEvent *e) {
if(oldey != sel.ey || oldex != sel.ex) {
int starty = MIN(oldey, sel.ey);
int endy = MAX(oldey, sel.ey);
- drawregion(0, (starty > 0 ? starty : 0), term.col, (
sel.e
y < term.row ? endy+1 : term.row));
+ drawregion(0, (starty > 0 ? starty : 0), term.col, (
end
y < term.row ? endy+1 : term.row));
}
}
}