summaryrefslogtreecommitdiff
path: root/t/t4015-diff-whitespace.sh
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of the dependency to GNU diff in the testsJohannes Schindelin2007-03-041-6/+6
| | | | | | | | | | | | | | | Now that "git diff" handles stdin and relative paths outside the working tree correctly, we can convert all instances of "diff -u" to "git diff". This commit is really the result of $ perl -pi.bak -e 's/diff -u/git diff/' $(git grep -l "diff -u" t/) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net> (cherry picked from commit c699a40d68215c7e44a5b26117a35c8a56fbd387)
* diff -b: ignore whitespace at end of lineJohannes Schindelin2006-12-041-4/+2
| | | | | | | | This is _not_ the same as "treat eol as whitespace", since that would mean that multiple empty lines would be treated as equal to e.g. a space. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
* t4015: work-around here document problem on Cygwin.Junio C Hamano2006-10-131-6/+6
| | | | Signed-off-by: Junio C Hamano <junio@twinsun.com>
* diff: fix 2 whitespace issuesJohannes Schindelin2006-10-121-0/+122
When whitespace or whitespace change was ignored, the function xdl_recmatch() returned memcmp() style differences, which is wrong, since it should return 0 on non-match. Also, there were three horrible off-by-one bugs, even leading to wrong hashes in the whitespace special handling. The issue was noticed by Ray Lehtiniemi. For good measure, this commit adds a test. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>