Eric Sunshine <sunshine@xxxxxxxxxxxxxx> writes: > With this change, code such as: > > for (i = has_dos_drive_prefix(src); i > 0; i--) > ... > > in path.c reads a bit oddly. Renaming the function might help. For instance: > > for (i = dos_drive_prefix_len(src); i > 0; i--) > ... Renaming may be unnecessary churn, but I do not think we mind an additional synonym, e.g. #define has_dos_drive_prefix(x) dos_drive_prefix_len(x) if some people prefer. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html