This website works better with JavaScript.
Home
Explore
Help
Sign In
Immanuel
/
nnn
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Include lines calculation in redraw
master
lostd
lostd
10 years ago
parent
4fa2a99449
commit
4e818a3980
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
noice.c
+ 4
- 1
noice.c
View File
@@ -214,8 +214,11 @@ begin:
qsort(dents, n, sizeof(*dents), dentcmp);
for (;;) {
int nlines = MIN(LINES - 4, n);
int nlines;
redraw:
nlines = MIN(LINES - 4, n);
/* Clean screen */
erase();
Write
Preview
Loading…
Cancel
Save