From 45c2de244fd363da2a2c47783c58e755c9bf0b11 Mon Sep 17 00:00:00 2001 From: "Sven M. Hallberg" <pesco@khjk.org> Date: Sat, 8 Feb 2020 14:35:29 +0100 Subject: [PATCH] comment cleanup --- pdf.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pdf.c b/pdf.c index e811113..bc4321a 100644 --- a/pdf.c +++ b/pdf.c @@ -68,8 +68,7 @@ bytes_eq(HBytes b, const char *s) return strncmp(s, (const char *)(b.token), b.len) == 0 && b.len == strlen(s); } -/* This probably belongs next to Ref and XREntry, - * but dictentry() needs to know about this type */ +// XXX This probably belongs next to Ref and XREntry, but dictentry() needs it typedef HCountedArray Dict; /* a helper to look up a value in a dictionary */ @@ -173,9 +172,7 @@ pp_parseresult(FILE *stream, const HParsedToken *tok, int indent, int delta) h_pprint(stream, res->ast, indent, delta); } -/* Can the default behavior be overriden to only print the V: field? */ -/* Warning: boolean keywords get printed as (null), - * since the LIT() macro parses them with h_ignore() */ +// XXX booleans get printed as (null), since LIT() parses them with h_ignore() void pp_dict(FILE *stream, const HParsedToken *tok, int indent, int delta) { -- GitLab