Show More
@@ -16,8 +16,8 b' configuration files for Mercurial' | |||
|
16 | 16 | :class: htmlonly |
|
17 | 17 | |
|
18 | 18 | |
|
19 | Synopsis | |
|
20 | ======== | |
|
19 | Description | |
|
20 | =========== | |
|
21 | 21 | |
|
22 | 22 | .. include:: ../mercurial/help/config.txt |
|
23 | 23 |
@@ -585,7 +585,8 b' static PyObject *hashmangle(const char *' | |||
|
585 | 585 | in a space or dot, which are unportable. */ |
|
586 | 586 | if (d == '.' || d == ' ') |
|
587 | 587 | dest[destlen - 1] = '_'; |
|
588 | if (destlen > maxshortdirslen) | |
|
588 | /* The + 3 is to account for "dh/" in the beginning */ | |
|
589 | if (destlen > maxshortdirslen + 3) | |
|
589 | 590 | break; |
|
590 | 591 | charcopy(dest, &destlen, destsize, src[i]); |
|
591 | 592 | p = -1; |
General Comments 0
You need to be logged in to leave comments.
Login now