summaryrefslogtreecommitdiff
path: root/src/diff.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-05-07 04:32:17 -0700
committerRussell Belfer <rb@github.com>2013-05-07 04:32:17 -0700
commite35e2684f693f28afb7a8f28028b4cb8bdd19f49 (patch)
tree95b1a7c9a41145a6495535cdc1f8b840d241dca0 /src/diff.h
parent3405f78754703948475b4677d03fcdbfb099b6a4 (diff)
downloadlibgit2-e35e2684f693f28afb7a8f28028b4cb8bdd19f49.tar.gz
Add GIT_DIFF_LINE_CONTEXT_EOFNL
This adds a new line origin constant for the special line that is used when both files end without a newline. In the course of writing the tests for this, I was having problems with modifying a file but not having diff notice because it was the same size and modified less than one second from the start of the test, so I decided to start working on nanosecond timestamp support. This commit doesn't contain the nanosecond support, but it contains the reorganization of maybe_modified and the hooks so that if the nanosecond data were being read by stat() (or rather being copied by git_index_entry__init_from_stat), then the nsec would be taken into account. This new stuff could probably use some more tests, although there is some amount of it here.
Diffstat (limited to 'src/diff.h')
-rw-r--r--src/diff.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/diff.h b/src/diff.h
index 48e20d1e3..16df431ed 100644
--- a/src/diff.h
+++ b/src/diff.h
@@ -26,6 +26,7 @@ enum {
GIT_DIFFCAPS_TRUST_MODE_BITS = (1 << 2), /* use st_mode? */
GIT_DIFFCAPS_TRUST_CTIME = (1 << 3), /* use st_ctime? */
GIT_DIFFCAPS_USE_DEV = (1 << 4), /* use st_dev? */
+ GIT_DIFFCAPS_TRUST_NANOSECS = (1 << 5), /* use stat time nanoseconds */
};
enum {