A '#' as the first character on a line in a cpignore file used to be
interpreted as a comment. It is no just considered another valid
character in a filename. Comments may no longer be represented in
cpignore files.
CountSourceReadBytes += l;
if (l && buf[l-1] == '\n')
buf[--l] = 0;
- if (buf[0] && buf[0] != '#')
+ if (buf[0])
AddList(list, buf, 1);
}
fclose(fi);
#endif
" -x use .cpignore as exclusion file\n"
" -X file specify exclusion file\n"
- " Version 1.12 by Matt Dillon and Dima Ruban\n"
+ " Version 1.14 by Matt Dillon and Dima Ruban\n"
);
exit(0);
} else {