summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-07-23 00:21:52 -0600
committerEduardo Chappa <chappa@washington.edu>2020-07-23 00:21:52 -0600
commit6591233b484d8f303b64f9042aee516d1b3a9cc6 (patch)
tree8951c6aa4a938080cb9363ed3ba6e107b09f7a78
parent55b383f6efe5a13d54e19317fbf6ec095369189c (diff)
downloadalpine-6591233b484d8f303b64f9042aee516d1b3a9cc6.tar.xz
* Remove dead code.
-rw-r--r--pith/filter.c4
1 files changed, 0 insertions, 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.
*