From: Mark Hansen Date: Sat, 13 Aug 2022 19:49:59 +0000 (+0000) Subject: Replace wrong 'CELLSBORDER' in error message X-Git-Tag: 5.0.1~8^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a2a3b86fc976fa66201002cde6cdcf44c8987923;p=graphviz Replace wrong 'CELLSBORDER' in error message Should be 'CELLBORDER'. See rationale at https://gitlab.com/graphviz/graphviz.gitlab.io/-/issues/158 --- diff --git a/lib/common/htmllex.c b/lib/common/htmllex.c index 704bc0c13..5fb76ac1c 100644 --- a/lib/common/htmllex.c +++ b/lib/common/htmllex.c @@ -278,7 +278,7 @@ static int cellborderfn(htmltbl_t * p, char *v) { long u; - if (doInt(v, "CELLSBORDER", 0, SCHAR_MAX, &u)) + if (doInt(v, "CELLBORDER", 0, SCHAR_MAX, &u)) return 1; p->cb = (signed char)u; return 0;