fix a comment, which was meant to be the opposite - sfeed_curses - sfeed curses UI (now part of sfeed, development is in sfeed)
 (HTM) git clone git://git.codemadness.org/sfeed_curses
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit aedcc4d12d8a10a0411e82f8e002e3c08401b1bd
 (DIR) parent 6638160adb2c006ba386036173dc50dc63571e69
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       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(-)
       ---
 (DIR) 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 lazyload */
       +                        /* 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);