From a2a3b86fc976fa66201002cde6cdcf44c8987923 Mon Sep 17 00:00:00 2001 From: Mark Hansen Date: Sat, 13 Aug 2022 19:49:59 +0000 Subject: [PATCH] Replace wrong 'CELLSBORDER' in error message Should be 'CELLBORDER'. See rationale at https://gitlab.com/graphviz/graphviz.gitlab.io/-/issues/158 --- lib/common/htmllex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0