aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authornoname <noname@inventati.org>2014-04-20 17:26:39 +0400
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2014-04-23 20:38:04 +0200
commit16ac85bf5422a7e925743f6134572d3ac1a25188 (patch)
tree4e20ae6dff2fc3ecf218049338524625c75734e2 /st.c
parentfe527aa508851d83f166b8f50ae4c2ed5f1e4ec8 (diff)
downloadst-16ac85bf5422a7e925743f6134572d3ac1a25188.tar.gz
Style fixes in tscrollup.
Diffstat (limited to 'st.c')
-rw-r--r--st.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/st.c b/st.c
index dffa84e..60243a7 100644
--- a/st.c
+++ b/st.c
@@ -1414,15 +1414,16 @@ void
tscrollup(int orig, int n) {
int i;
Line temp;
+
LIMIT(n, 0, term.bot-orig+1);
tclearregion(0, orig, term.col-1, orig+n-1);
tsetdirt(orig+n, term.bot);
for(i = orig; i <= term.bot-n; i++) {
- temp = term.line[i];
- term.line[i] = term.line[i+n];
- term.line[i+n] = temp;
+ temp = term.line[i];
+ term.line[i] = term.line[i+n];
+ term.line[i+n] = temp;
}
selscroll(orig, -n);
remember that computers suck.