diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-08-29 20:27:10 (GMT) |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-08-29 20:27:10 (GMT) |
commit | 9656153b87d47b34986f2d77eef9199c24cbf9f6 (patch) | |
tree | 775cea8cee6dafafd27ab89da6c28e95da051c3a | |
parent | 7d37b5bf4eda8b2dcca371fb4b5ebd50fed64d67 (diff) | |
parent | 719c2b9d926bf2be4879015e3620d27d32f007b6 (diff) | |
download | git-9656153b87d47b34986f2d77eef9199c24cbf9f6.zip git-9656153b87d47b34986f2d77eef9199c24cbf9f6.tar.gz git-9656153b87d47b34986f2d77eef9199c24cbf9f6.tar.bz2 |
Merge branch 'master' of git://git.kernel.org/pub/scm/gitk/gitk
* 'master' of git://git.kernel.org/pub/scm/gitk/gitk:
gitk: Fix bug causing undefined variable error when cherry-picking
-rwxr-xr-x | gitk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6641,8 +6641,9 @@ proc splitarc {p} { proc addnewchild {id p} { global allids allparents allchildren idtags nextarc nbmp global arcnos arcids arctags arcout arcend arcstart archeads growing - global seeds + global seeds allcommits + if {![info exists allcommits]} return lappend allids $id set allparents($id) [list $p] set allchildren($id) {} |