Mercurial > hg-stable
comparison contrib/hgk @ 4741:4a84f7421692
Make hgk handle filenames with spaces (issue49)
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sun, 01 Jul 2007 19:15:25 +0200 |
parents | e1d1b22bab57 |
children | 713426631adf |
comparison
equal
deleted
inserted
replaced
4740:e1d1b22bab57 | 4741:4a84f7421692 |
---|---|
2817 addtocflist $ids | 2817 addtocflist $ids |
2818 } | 2818 } |
2819 } | 2819 } |
2820 return | 2820 return |
2821 } | 2821 } |
2822 set file [lindex $line 5] | 2822 set tab1 [expr [string first "\t" $line] + 1] |
2823 set tab2 [expr [string first "\t" $line $tab1] - 1] | |
2824 set file [string range $line $tab1 $tab2] | |
2823 lappend treediff $file | 2825 lappend treediff $file |
2824 } | 2826 } |
2825 | 2827 |
2826 proc getblobdiffs {ids} { | 2828 proc getblobdiffs {ids} { |
2827 global diffopts blobdifffd diffids env curdifftag curtagstart | 2829 global diffopts blobdifffd diffids env curdifftag curtagstart |