aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authornoname <noname@inventati.org>2014-04-22 21:59:01 +0400
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2014-04-23 15:39:02 +0200
commitf21e47f44a11b9a24a5d5081fea46f5b5f02eadf (patch)
tree7233376020b5a4cf0d81f0ed8183b20e01c64299 /st.c
parent87abc7cd596ca34a2e664f1c762f8b69b82eba40 (diff)
downloadst-f21e47f44a11b9a24a5d5081fea46f5b5f02eadf.tar.gz
st-f21e47f44a11b9a24a5d5081fea46f5b5f02eadf.zip
Use BETWEEN in tinsertblankline and tdeleteline.
Diffstat (limited to 'st.c')
-rw-r--r--st.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/st.c b/st.c
index 019f53c..92fd7da 100644
--- a/st.c
+++ b/st.c
@@ -1628,18 +1628,14 @@ tinsertblank(int n) {
1628 1628
1629void 1629void
1630tinsertblankline(int n) { 1630tinsertblankline(int n) {
1631 if(term.c.y < term.top || term.c.y > term.bot) 1631 if(BETWEEN(term.c.y, term.top, term.bot))
1632 return; 1632 tscrolldown(term.c.y, n);
1633
1634 tscrolldown(term.c.y, n);
1635} 1633}
1636 1634
1637void 1635void
1638tdeleteline(int n) { 1636tdeleteline(int n) {
1639 if(term.c.y < term.top || term.c.y > term.bot) 1637 if(BETWEEN(term.c.y, term.top, term.bot))
1640 return; 1638 tscrollup(term.c.y, n);
1641
1642 tscrollup(term.c.y, n);
1643} 1639}
1644 1640
1645int32_t 1641int32_t