From a38a8e8ede58ea72e74355394950e05bb888caa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Wed, 17 Jan 2018 11:47:06 +0000 Subject: [PATCH] diff: add two missing options --- diff.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/diff.go b/diff.go index 3cc1dc2..3088320 100644 --- a/diff.go +++ b/diff.go @@ -437,6 +437,8 @@ const ( DiffShowUnmodified DiffOptionsFlag = C.GIT_DIFF_SHOW_UNMODIFIED DiffPatience DiffOptionsFlag = C.GIT_DIFF_PATIENCE DiffMinimal DiffOptionsFlag = C.GIT_DIFF_MINIMAL + DiffShowBinary DiffOptionsFlag = C.GIT_DIFF_SHOW_BINARY + DiffIndentHeuristic DiffOptionsFlag = C.GIT_DIFF_INDENT_HEURISTIC ) type DiffNotifyCallback func(diffSoFar *Diff, deltaToAdd DiffDelta, matchedPathspec string) error