Bert Wesarg <bert.wesarg@xxxxxxxxxxxxxx> writes: >browser_path used to end with a slash, so the regexp matches the empty string >and therefore removes nothing. > >Fix this. > >Signed-off-by: Bert Wesarg <bert.wesarg@xxxxxxxxxxxxxx> > >--- > git-gui/lib/browser.tcl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/git-gui/lib/browser.tcl b/git-gui/lib/browser.tcl >index c241572..a8c6223 100644 >--- a/git-gui/lib/browser.tcl >+++ b/git-gui/lib/browser.tcl >@@ -121,7 +121,7 @@ method _parent {} { > if {$browser_stack eq {}} { > regsub {:.*$} $browser_path {:} browser_path > } else { >- regsub {/[^/]+$} $browser_path {} browser_path >+ regsub {/[^/]+/$} $browser_path {/} browser_path > } > set browser_status [mc "Loading %s..." $browser_path] > _ls $this [lindex $parent 0] [lindex $parent 1] Thanks - applied to git-gui master. -- Pat Thoyts http://www.patthoyts.tk/ PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD -- 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