From 3b22f3e7dbdc9ae9628ff8ae64bf1c85480fd633 Mon Sep 17 00:00:00 2001 From: "Sven M. Hallberg" <pesco@khjk.org> Date: Wed, 21 Sep 2022 13:04:12 +0200 Subject: [PATCH] fit comment to 80 columns --- src/parsers/and.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/parsers/and.c b/src/parsers/and.c index e07bc9fc..9a6d3254 100644 --- a/src/parsers/and.c +++ b/src/parsers/and.c @@ -12,9 +12,9 @@ static HParseResult *parse_and(void* env, HParseState* state) { static const HParserVtable and_vt = { .parse = parse_and, .isValidRegular = h_false, /* TODO: strictly speaking this should be regular, - but it will be a huge amount of work and difficult - to get right, so we're leaving it for a future - revision. --mlp, 18/12/12 */ + but it will be a huge amount of work and + difficult to get right, so we're leaving it for + a future revision. --mlp, 18/12/12 */ .isValidCF = h_false, /* despite TODO above, this remains false. */ .compile_to_rvm = h_not_regular, .higher = true, -- GitLab