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
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2013-07-14 12:36:02 +0400
committerJunio C Hamano <gitster@pobox.com>2013-07-15 21:56:09 +0400
commitb3920bbdc51fc360bde70e7c19088acfe44b9c4b (patch)
tree914e76d24a2b1371616f4a3e0a52172c097fb1b9 /pathspec.h
parent61588ccf78373f5211ecdc56d53f0e17d04283fe (diff)
rename field "raw" to "_raw" in struct pathspec
This patch is essentially no-op. It helps catching new use of this field though. This field is introduced as an intermediate step for the pathspec conversion and will be removed eventually. At this stage no more access sites should be introduced. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pathspec.h')
-rw-r--r--pathspec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pathspec.h b/pathspec.h
index 31a9c96237..0f6739dc67 100644
--- a/pathspec.h
+++ b/pathspec.h
@@ -11,7 +11,7 @@
#define PATHSPEC_ONESTAR 1 /* the pathspec pattern sastisfies GFNM_ONESTAR */
struct pathspec {
- const char **raw; /* get_pathspec() result, not freed by free_pathspec() */
+ const char **_raw; /* get_pathspec() result, not freed by free_pathspec() */
int nr;
unsigned int has_wildcard:1;
unsigned int recursive:1;