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/diff.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-07-26 01:31:19 +0400
committerJunio C Hamano <junkio@cox.net>2005-07-26 04:16:20 +0400
commitca8c9156f8f980455f64e2cedcf0347328e46029 (patch)
treec62dec3c79d2da9856fba875b2ee2687f932de4c /diff.h
parente7baa4f45f4420a6d2da6a13e8959f8405c3ea19 (diff)
diff-raw: Use 'A' instead of 'N' for added files.
This actually changes the diff-raw status letter from N to A for added files. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.h')
-rw-r--r--diff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.h b/diff.h
index aebf3f1ab5..3deb7fa4e8 100644
--- a/diff.h
+++ b/diff.h
@@ -83,7 +83,7 @@ extern int diff_queue_is_empty(void);
extern void diff_flush(int output_style, int line_terminator);
/* diff-raw status letters */
-#define DIFF_STATUS_ADDED 'N'
+#define DIFF_STATUS_ADDED 'A'
#define DIFF_STATUS_COPIED 'C'
#define DIFF_STATUS_DELETED 'D'
#define DIFF_STATUS_MODIFIED 'M'