summaryrefslogtreecommitdiffstats
path: root/read.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2022-05-19 14:48:56 +0000
committerIngo Schwarze <schwarze@openbsd.org>2022-05-19 14:48:56 +0000
commit357a222c192066a0a66051f7ab345481049d8907 (patch)
treea057a646982fee0a4da4ad46f649b7e66483116d /read.c
parent190ab218c8673a1dac3efcb197d1f78159f6fe7c (diff)
downloadmandoc-357a222c192066a0a66051f7ab345481049d8907.tar.gz
improve a comment explaining a particularly nasty hack; no code change
Diffstat (limited to 'read.c')
-rw-r--r--read.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/read.c b/read.c
index 3f375dcf..28a55357 100644
--- a/read.c
+++ b/read.c
@@ -261,7 +261,12 @@ mparse_buf_r(struct mparse *curp, struct buf blk, size_t i, int start)
lastln = thisln;
}
- /* XXX Ugly hack to mark the end of the input. */
+ /*
+ * XXX Ugly hack to mark the end of the input,
+ * such that the function roff_parse_comment()
+ * doesn't attempt to append another line if the
+ * last input line ends with an escape character.
+ */
if (i == blk.sz || blk.buf[i] == '\0') {
if (pos + 2 > ln.sz)