summaryrefslogtreecommitdiffstats
path: root/group-base
diff options
context:
space:
mode:
authorWolfgang Müller2022-05-15 19:30:16 +0200
committerWolfgang Müller2022-05-15 19:30:16 +0200
commitbfe7fb59a2c880680219127ab6b0f16988e38074 (patch)
tree52142296f70000a323c40061335911f61c47b320 /group-base
parent98d3d2f9b51b5c673f0736fd8fa88e3d132f6033 (diff)
downloadportage-roles-bfe7fb59a2c880680219127ab6b0f16988e38074.tar.gz
group-base: Drop obsolete patch
This is fixed upstream in mandoc-1.14.6
Diffstat (limited to 'group-base')
-rw-r--r--group-base/patches/app-text/mandoc-1.14.5/fix-empty-tbl-nullptr.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/group-base/patches/app-text/mandoc-1.14.5/fix-empty-tbl-nullptr.patch b/group-base/patches/app-text/mandoc-1.14.5/fix-empty-tbl-nullptr.patch
deleted file mode 100644
index 8e2d249..0000000
--- a/group-base/patches/app-text/mandoc-1.14.5/fix-empty-tbl-nullptr.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/tbl_term.c 2019-11-08 16:58:41.628382060 +0100
-+++ b/tbl_term.c 2019-11-08 16:59:56.127323602 +0100
-@@ -626,7 +626,8 @@
-
- lw = cpp == NULL || cpn == NULL ||
- (cpn->pos != TBL_CELL_DOWN &&
-- (dpn == NULL || strcmp(dpn->string, "\\^") != 0))
-+ (dpn == NULL || dpn->string == NULL ||
-+ strcmp(dpn->string, "\\^") != 0))
- ? hw : 0;
- tbl_direct_border(tp, BHORIZ * lw,
- col->width + col->spacing / 2);
-@@ -670,7 +671,8 @@
-
- rw = cpp == NULL || cpn == NULL ||
- (cpn->pos != TBL_CELL_DOWN &&
-- (dpn == NULL || strcmp(dpn->string, "\\^") != 0))
-+ (dpn == NULL || dpn->string == NULL ||
-+ strcmp(dpn->string, "\\^") != 0))
- ? hw : 0;
-
- /* The line crossing at the end of this column. */