diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2024-11-25 21:05:36 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2024-11-25 21:05:36 +0000 |
commit | 20de55b07cf91a0b07ec94e655f5740f56cdd541 (patch) | |
tree | 66184d353c7a1ecd33b26464cc055b503abba7c5 /read.c | |
parent | e9bf778aefc154b6bdefd2772f7fd85819f465b1 (diff) |
Vendor import of mandoc as of 2024-09-22vendor/mandoc/20240922vendor/mandoc
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: read.c,v 1.220 2021/06/27 17:57:54 schwarze Exp $ */ +/* $Id: read.c,v 1.221 2022/05/19 14:48:56 schwarze Exp $ */ /* * Copyright (c) 2010-2020 Ingo Schwarze <schwarze@openbsd.org> * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> @@ -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) |