Browse Source

Merge branch 'maint'

* maint:
  git-gui: Don't display CR within console windows
  git-gui: Handle progress bars from newer gits
  git-gui: Correctly report failures from git-write-tree

Conflicts:

	lib/commit.tcl
	lib/console.tcl
maint
Shawn O. Pearce 17 years ago
parent
commit
c9dcc7f865
  1. 2
      lib/commit.tcl
  2. 2
      lib/console.tcl
  3. 5
      lib/status_bar.tcl

2
lib/commit.tcl

@ -253,7 +253,7 @@ proc commit_committree {fd_wt curHEAD msg} { @@ -253,7 +253,7 @@ proc commit_committree {fd_wt curHEAD msg} {
global repo_config

gets $fd_wt tree_id
if {$tree_id eq {} || [catch {close $fd_wt} err]} {
if {[catch {close $fd_wt} err]} {
error_popup [strcat [mc "write-tree failed:"] "\n\n$err"]
ui_status {Commit failed.}
unlock_index

2
lib/console.tcl

@ -120,7 +120,7 @@ method _read {fd after} { @@ -120,7 +120,7 @@ method _read {fd after} {
} else {
$w_t delete $console_cr end
$w_t insert end "\n"
$w_t insert end [string range $buf $c $cr]
$w_t insert end [string range $buf $c [expr {$cr - 1}]]
set c $cr
incr c
}

5
lib/status_bar.tcl

@ -97,7 +97,10 @@ method update_meter {buf} { @@ -97,7 +97,10 @@ method update_meter {buf} {

set prior [string range $meter 0 $r]
set meter [string range $meter [expr {$r + 1}] end]
if {[regexp "\\((\\d+)/(\\d+)\\)\\s+done\r\$" $prior _j a b]} {
set p "\\((\\d+)/(\\d+)\\)"
if {[regexp ":\\s*\\d+% $p\(?:, done.\\s*\n|\\s*\r)\$" $prior _j a b]} {
update $this $a $b
} elseif {[regexp "$p\\s+done\r\$" $prior _j a b]} {
update $this $a $b
}
}

Loading…
Cancel
Save