On Tue, Oct 04, 2011 at 10:08:13PM +0200, Marcus Karlsson wrote: > Teach gitk to respect log.showroot. Sounds reasonable, ... > - set cmd [concat | git diff-tree -r $flags $ids] > + set cmd [concat | git diff-tree -r] > + if {$log_showroot eq true} { > + set cmd [concat $cmd --root] > + } > + set cmd [concat $cmd $flags $ids] but is there any reason not to do it like this? if {$log_showroot} { lappend flags --root } set cmd [concat | git diff-tree -r $flags $ids] I.e., do you particularly want the --root before the other flags? Paul. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html