revert :)

This commit is contained in:
p.kosyh 2011-07-18 17:41:15 +00:00
parent f99dc1dd29
commit 1e3986aa9a

View file

@ -2590,7 +2590,6 @@ static int is_delim(int c)
case ':': case ':':
case '!': case '!':
case '+': case '+':
case '@':
case '-': case '-':
case '?': case '?':
case '/': case '/':
@ -2633,7 +2632,7 @@ static const char *lookup_token_or_sp(const char *ptr)
char *eptr; char *eptr;
const char *p = ptr; const char *p = ptr;
while (*p) { while (*p) {
p += strcspn(p, " .,:!+@-?/<\t\n"); p += strcspn(p, " .,:!+-?/<\t\n");
if (*p != '<' ) { if (*p != '<' ) {
while (is_delim(*p)) while (is_delim(*p))
p ++; p ++;