1
0
mirror of https://github.com/mirror/wget.git synced 2025-04-24 12:10:16 +08:00

* src/html-parse.c: Remove unused macro SKIP_NON_WS

This commit is contained in:
Tim Rühsen 2017-02-03 12:15:24 +01:00
parent 485fcfcc20
commit 3ba112ea57

View File

@ -801,14 +801,6 @@ name_allowed (const struct hash_table *ht, const char *b, const char *e)
} \
} while (0)
/* Skip non-whitespace, if any. */
#define SKIP_NON_WS(p) do { \
while (!c_isspace (*p)) { \
ADVANCE (p); \
} \
} while (0)
#ifdef STANDALONE
static int tag_backout_count;
#endif