From 6591233b484d8f303b64f9042aee516d1b3a9cc6 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Thu, 23 Jul 2020 00:21:52 -0600 Subject: [PATCH] * Remove dead code. --- pith/filter.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pith/filter.c b/pith/filter.c index 22f98ad..e3c54f4 100644 --- a/pith/filter.c +++ b/pith/filter.c @@ -7798,10 +7798,6 @@ html_element_output(FILTER_S *f, int ch) html_output(f, ch); } -#define ISHEX_DIGIT(X) (isdigit((X)) || \ - ((X) >= 'a' && (X) <= 'f') || \ - ((X) >= 'A' && (X) <= 'F')) - /* * collect html entity and return its UCS value when done. * -- 2.11.4.GIT