diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-07-23 00:21:52 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-07-23 00:21:52 -0600 |
commit | 6591233b484d8f303b64f9042aee516d1b3a9cc6 (patch) | |
tree | 8951c6aa4a938080cb9363ed3ba6e107b09f7a78 | |
parent | 55b383f6efe5a13d54e19317fbf6ec095369189c (diff) | |
download | alpine-6591233b484d8f303b64f9042aee516d1b3a9cc6.tar.xz |
* Remove dead code.
-rw-r--r-- | pith/filter.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pith/filter.c b/pith/filter.c index 22f98ad7..e3c54f47 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. * |