On Sun, Nov 28, 2010 at 9:50 PM, Matthew Ruffalo [off-list ref] wrote:
quoted hunk ↗ jump to hunk
diff --git a/diff.h b/diff.h
index 0083d92..7b509c5 100644
--- a/diff.h
+++ b/diff.h
@@ -86,6 +86,9 @@ typedef struct strbuf *(*diff_prefix_fn_t)(struct
diff_options *opt, void *data)
#define DIFF_XDL_SET(opts, flag) ((opts)->xdl_opts |= XDF_##flag)
#define DIFF_XDL_CLR(opts, flag) ((opts)->xdl_opts &= ~XDF_##flag)
+#define DIFF_STAT_DEFAULT_WIDTH 80
+#define DIFF_STAT_DEFAULT_NAME_WIDTH 50
+
If this is only used in diff.c, can this be moved to diff.c instead?