(parse_file_seq): Fix typo in last change. Remove unused variable.

This commit is contained in:
Roland McGrath 1994-04-21 21:28:59 +00:00
parent b2522ec319
commit 8f581d3bc0

3
read.c
View File

@ -1512,7 +1512,6 @@ parse_file_seq (stringp, stopchar, size, strip)
register char *p = *stringp;
char *q;
char *name;
register int c;
while (1)
{
@ -1526,7 +1525,7 @@ parse_file_seq (stringp, stopchar, size, strip)
q = p;
p = find_char_unquote (q, stopchar, 1);
if (p == 0)
p = q + strlen (q)
p = q + strlen (q);
if (strip)
/* Skip leading `./'s. */