aboutsummaryrefslogtreecommitdiffstats
path: root/diff.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-07-25 14:31:19 -0700
committerJunio C Hamano <junkio@cox.net>2005-07-25 17:16:20 -0700
commitca8c9156f8f980455f64e2cedcf0347328e46029 (patch)
treec62dec3c79d2da9856fba875b2ee2687f932de4c /diff.h
parente7baa4f45f4420a6d2da6a13e8959f8405c3ea19 (diff)
downloadgit-ca8c9156f8f980455f64e2cedcf0347328e46029.tar.gz
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'