mirror of
https://github.com/mirror/make.git
synced 2025-01-16 15:20:39 +08:00
(parse_file_seq): Fix typo in last change. Remove unused variable.
This commit is contained in:
parent
b2522ec319
commit
8f581d3bc0
3
read.c
3
read.c
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user