Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-05-27 08:00:00 +0300
committerJunio C Hamano <gitster@pobox.com>2021-05-27 08:02:37 +0300
commit2c9f1bfdb47acde21052bb33ff083347cbcb574d (patch)
tree59eba3ec0924940c5c68e54c6a1820022edc0833 /dir.c
parent1df046bcff6085f3800088c51e344594f822df57 (diff)
Revert "dir: update stale description of treat_directory()"
This reverts commit 4e689d81718eb6e939cace317ea3e33cb994dcbb, to be replaced with a reworked version.
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/dir.c b/dir.c
index ff004b298b..ed68b7e641 100644
--- a/dir.c
+++ b/dir.c
@@ -1740,13 +1740,13 @@ static enum exist_status directory_exists_in_index(struct index_state *istate,
* Case 3: if we didn't have it in the index previously, we
* have a few sub-cases:
*
- * (a) if DIR_SHOW_OTHER_DIRECTORIES flag is set, we show it as
- * just a directory, unless DIR_HIDE_EMPTY_DIRECTORIES is
+ * (a) if "show_other_directories" is true, we show it as
+ * just a directory, unless "hide_empty_directories" is
* also true, in which case we need to check if it contains any
* untracked and / or ignored files.
- * (b) if it looks like a git directory and we don't have the
- * DIR_NO_GITLINKS flag, then we treat it as a gitlink, and
- * show it as a directory.
+ * (b) if it looks like a git directory, and we don't have
+ * 'no_gitlinks' set we treat it as a gitlink, and show it
+ * as a directory.
* (c) otherwise, we recurse into it.
*/
static enum path_treatment treat_directory(struct dir_struct *dir,
@@ -1834,6 +1834,7 @@ static enum path_treatment treat_directory(struct dir_struct *dir,
return path_recurse;
}
+ /* This is the "show_other_directories" case */
assert(dir->flags & DIR_SHOW_OTHER_DIRECTORIES);
/*
@@ -1848,7 +1849,7 @@ static enum path_treatment treat_directory(struct dir_struct *dir,
/* Special cases for where this directory is excluded/ignored */
if (excluded) {
/*
- * If DIR_SHOW_OTHER_DIRECTORIES is set and we're not
+ * In the show_other_directories case, if we're not
* hiding empty directories, there is no need to
* recurse into an ignored directory.
*/