mirror of
https://github.com/mirror/make.git
synced 2026-08-09 17:38:47 +00:00
(parse_file_seq): Fix typo in last change. Remove unused variable.
This commit is contained in:
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. */
|
||||
|
||||
Reference in New Issue
Block a user