aboutsummaryrefslogtreecommitdiffstats
path: root/main/mdocml/fix-tbl-null-pointer.patch
diff options
context:
space:
mode:
authorMilan P. Stanić <mps@arvanta.net>2020-04-23 13:43:06 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2020-04-29 12:55:07 +0000
commita5f8e2f2e8ebae977f0a2475f1906f97997f2e04 (patch)
treeb3eb4c57cd57d6127880e550b3f6b3b9adeb4bdb /main/mdocml/fix-tbl-null-pointer.patch
parent864c859e9deeda2c68e8310550ca3c6d70a28dd7 (diff)
downloadaports-a5f8e2f2e8ebae977f0a2475f1906f97997f2e04.tar.bz2
aports-a5f8e2f2e8ebae977f0a2475f1906f97997f2e04.tar.xz
main/mandoc: rename mdocml to mandoc
upstream renamed mdocml to mandoc about three years ago (concluded from looking at download page) so we rename it to reflect upstream name rewrite pkgdesc to more desctiptive one add replaces and provides 'mdocml' for smooth upgrade and for some packages which didn't changed depends to' mandoc'
Diffstat (limited to 'main/mdocml/fix-tbl-null-pointer.patch')
-rw-r--r--main/mdocml/fix-tbl-null-pointer.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/main/mdocml/fix-tbl-null-pointer.patch b/main/mdocml/fix-tbl-null-pointer.patch
deleted file mode 100644
index ab68f9a1a6..0000000000
--- a/main/mdocml/fix-tbl-null-pointer.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-===================================================================
-RCS file: /cvs/mandoc/tbl_term.c,v
-retrieving revision 1.69
-retrieving revision 1.70
-diff -u -p -r1.69 -r1.70
---- a/tbl_term.c 2019/03/16 21:35:48 1.69
-+++ b/tbl_term.c 2019/03/18 08:00:34 1.70
-@@ -629,7 +629,8 @@ tbl_hrule(struct termp *tp, const struct tbl_span *spp
-
- 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);
-@@ -675,7 +676,8 @@ tbl_hrule(struct termp *tp, const struct tbl_span *spp
-
- 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. */