Revision 933bf40a5c6328b6c022b636f45a6f2c48c3838e authored by Linus Torvalds on 10 August 2007, 05:21:29 UTC, committed by Junio C Hamano on 10 August 2007, 09:30:44 UTC
This doesn't actually change any real code, but it changes the interface
to unpack_trees() to take an array of "struct tree_desc" entries, the same
way the tree-walk.c functions do.

The reason for this is that we would be much better off if we can do the
tree-unpacking using the generic "traverse_trees()" functionality instead
of having to the special "unpack" infrastructure.

This really is a pretty minimal diff, just to change the calling
convention. It passes all the tests, and looks sane. There were only two
users of "unpack_trees()": builtin-read-tree and merge-recursive, and I
tried to keep the changes minimal.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 7efeb8f
History
File Mode Size
.gitignore -rw-r--r-- 22 bytes
Makefile -rw-r--r-- 1.3 KB
branches-- -rw-r--r-- 47 bytes
hooks--applypatch-msg -rw-r--r-- 441 bytes
hooks--commit-msg -rw-r--r-- 780 bytes
hooks--post-commit -rw-r--r-- 152 bytes
hooks--post-receive -rw-r--r-- 510 bytes
hooks--post-update -rw-r--r-- 207 bytes
hooks--pre-applypatch -rw-r--r-- 387 bytes
hooks--pre-commit -rw-r--r-- 1.7 KB
hooks--pre-rebase -rw-r--r-- 4.2 KB
hooks--update -rw-r--r-- 1.9 KB
info--exclude -rw-r--r-- 240 bytes
this--description -rw-r--r-- 58 bytes

back to top