fix a comment, which was meant to be the opposite - sfeed_curses - sfeed curses… | |
git clone git://git.codemadness.org/sfeed_curses | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit aedcc4d12d8a10a0411e82f8e002e3c08401b1bd | |
parent 6638160adb2c006ba386036173dc50dc63571e69 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 26 Mar 2021 18:22:00 +0100 | |
fix a comment, which was meant to be the opposite | |
Diffstat: | |
M sfeed_curses.c | 3 ++- | |
1 file changed, 2 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/sfeed_curses.c b/sfeed_curses.c | |
@@ -1922,7 +1922,8 @@ markread(struct pane *p, off_t from, off_t to, int isread) | |
die("popen: %s", cmd); | |
for (i = from; i <= to; i++) { | |
- row = &(p->rows[i]); /* use pane_row_get: no need for … | |
+ /* do not use pane_row_get: no need for lazyload */ | |
+ row = &(p->rows[i]); | |
item = (struct item *)row->data; | |
if (item->isnew != isnew) { | |
fputs(item->matchnew, fp); |