Yet more "#if 0" content removed.

This commit is contained in:
"Robert P. J. Day"
2006-07-01 15:09:17 +00:00
parent d35ef0f666
commit 7ccb65f3a4
8 changed files with 1 additions and 85 deletions

View File

@@ -98,31 +98,6 @@ static char *strip_line(char *line)
return line;
}
#if 0
static char *parse_word(char **buf)
{
char *word, *next;
word = *buf;
if (*word == '\0')
return NULL;
word = skip_over_blank(word);
next = skip_over_word(word);
if (*next) {
char *end = next - 1;
if (*end == '"' || *end == '\'')
*end = '\0';
*next++ = '\0';
}
*buf = next;
if (*word == '"' || *word == '\'')
word++;
return word;
}
#endif
/*
* Start parsing a new line from the cache.
*