sfeed_curses

[fork] sfeed (atom feed) reader
Log | Files | Refs | README | LICENSE

commit 18986ef323c9858b841f8d7ee8b0e8e90403fad9
parent 2cae6ced5c9317bba2bbde9d1d4d8f5af54169b8
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Wed,  8 Jul 2020 19:34:11 +0200

improve comments

Diffstat:
Msfeed_curses.c | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/sfeed_curses.c b/sfeed_curses.c @@ -47,8 +47,8 @@ struct row { }; struct pane { - int x; /* absolute x position of the window on the screen */ - int y; /* absolute y position of the window on the screen */ + int x; /* absolute x position on the screen */ + int y; /* absolute y position on the screen */ int width; /* absolute width of the window */ int height; /* absolute height of the window */ off_t pos; /* focused row position */ @@ -66,8 +66,8 @@ struct pane { struct scrollbar { int tickpos; int ticksize; - int x; /* absolute x position of the window on the screen */ - int y; /* absolute y position of the window on the screen */ + int x; /* absolute x position on the screen */ + int y; /* absolute y position on the screen */ int size; /* absolute size of the bar */ int focused; /* has focus or not */ int hidden; /* is visible or not */ @@ -75,8 +75,8 @@ struct scrollbar { }; struct statusbar { - int x; /* absolute x position of the window on the screen */ - int y; /* absolute y position of the window on the screen */ + int x; /* absolute x position on the screen */ + int y; /* absolute y position on the screen */ int width; /* absolute width of the bar */ char *text; /* data */ int hidden; /* is visible or not */ @@ -88,7 +88,7 @@ struct statusbar { /* feed info */ struct feed { char *name; /* feed name */ - char *path; /* path to feed or NULL from stdin */ + char *path; /* path to feed or NULL for stdin */ unsigned long totalnew; /* amount of new items per feed */ unsigned long total; /* total items */ FILE *fp; /* file pointer */