diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-08-29 13:27:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-08-29 13:27:10 -0700 |
commit | 9656153b87d47b34986f2d77eef9199c24cbf9f6 (patch) | |
tree | 775cea8cee6dafafd27ab89da6c28e95da051c3a | |
parent | completion: also complete git-log's --left-right and --cherry-pick option (diff) | |
parent | gitk: Fix bug causing undefined variable error when cherry-picking (diff) | |
download | tgif-9656153b87d47b34986f2d77eef9199c24cbf9f6.tar.xz |
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) {} |