cgmnlm

colorful gemini line mode browser
git clone https://git.clttr.info/cgmnlm.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 28283bda98accf122b6424ac611fd4ff25dedbc9
parent 05cc8b85cdf731ea3a664b6099aad04f22bbca6c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 20 Sep 2020 21:53:08 -0400

Remove unnecessary TODO

There is no line length limit and authors are strongly discouraged from
hard-wrapping by the specification.

Diffstat:
Msrc/parser.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/parser.c b/src/parser.c @@ -52,7 +52,6 @@ gemini_parser_next(struct gemini_parser *p, struct gemini_token *tok) p->buf[p->bufln] = 0; } - // TODO: Collapse multi-line text for the user-agent to wrap char *end; if ((end = strstr(p->buf, "\n")) != NULL) { *end = 0;