From: Junio C Hamano <gitster@pobox.com>
To: git@vger.kernel.org
Subject: [PATCH] diff: treat -crlf files as binary
Date: Fri, 29 Aug 2008 14:28:20 -0700 [thread overview]
Message-ID: <7vfxon4ikr.fsf@gitster.siamese.dyndns.org> (raw)
The manual advertises that setting "crlf" attribute to false marks the
file as binary. We should pay attention to this condition in addition
to the "do not diff" attribute (i.e. setting "diff" to false) when
deciding not to show the textual diff.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
* Strictly speaking any change is backward incompatible, and this is
certainly one, but I do not think of a good use case to depend on the
previous behaviour, which was reported as a bug by my coworker.
diff.c | 28 +++++++++++++++++++---------
1 files changed, 19 insertions(+), 9 deletions(-)
diff --git a/diff.c b/diff.c
index 18fa7a7..258b438 100644
--- a/diff.c
+++ b/diff.c
@@ -1314,36 +1314,46 @@ static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two)
static void setup_diff_attr_check(struct git_attr_check *check)
{
static struct git_attr *attr_diff;
+ static struct git_attr *attr_crlf;
- if (!attr_diff) {
+ if (!attr_diff)
attr_diff = git_attr("diff", 4);
- }
+ if (!attr_crlf)
+ attr_crlf = git_attr("crlf", 4);
check[0].attr = attr_diff;
+ check[1].attr = attr_crlf;
}
static void diff_filespec_check_attr(struct diff_filespec *one)
{
- struct git_attr_check attr_diff_check;
+ struct git_attr_check attr_diff_check[2];
int check_from_data = 0;
if (one->checked_attr)
return;
- setup_diff_attr_check(&attr_diff_check);
+ setup_diff_attr_check(attr_diff_check);
one->is_binary = 0;
one->funcname_pattern_ident = NULL;
- if (!git_checkattr(one->path, 1, &attr_diff_check)) {
+ if (!git_checkattr(one->path, 2, attr_diff_check)) {
const char *value;
- /* binaryness */
- value = attr_diff_check.value;
+ /* binaryness; check both "diff" and "crlf" */
+ value = attr_diff_check[0].value;
if (ATTR_TRUE(value))
;
else if (ATTR_FALSE(value))
one->is_binary = 1;
- else
- check_from_data = 1;
+ else {
+ const char *crlf = attr_diff_check[1].value;
+ if (ATTR_TRUE(crlf))
+ ;
+ else if (ATTR_FALSE(crlf))
+ one->is_binary = 1;
+ else
+ check_from_data = 1;
+ }
/* funcname pattern ident */
if (ATTR_TRUE(value) || ATTR_FALSE(value) || ATTR_UNSET(value))
--
1.6.0.1.90.g27a6e
next reply other threads:[~2008-08-29 21:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-29 21:28 Junio C Hamano [this message]
2008-08-29 21:56 ` [PATCH] diff: treat -crlf files as binary Avery Pennarun
2008-08-30 21:34 ` Junio C Hamano
2008-08-31 2:34 ` Avery Pennarun
2008-08-31 8:27 ` Matthieu Moy
2008-08-31 9:16 ` Alex Riesen
2008-08-31 16:25 ` Junio C Hamano
2008-08-31 18:34 ` Avery Pennarun
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7vfxon4ikr.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).