summaryrefslogtreecommitdiff
path: root/git-gui
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2006-11-18 08:08:51 (GMT)
committerShawn O. Pearce <spearce@spearce.org>2006-11-18 08:08:51 (GMT)
commitb67651129897738496a9dcd3c01129a42acd11db (patch)
treecff45ea5bc4c42b1d562f70cea461bfe466f4484 /git-gui
parent32e0bcab59334ed8f1955c8afa830de22362c1ec (diff)
downloadgit-b67651129897738496a9dcd3c01129a42acd11db.zip
git-b67651129897738496a9dcd3c01129a42acd11db.tar.gz
git-b67651129897738496a9dcd3c01129a42acd11db.tar.bz2
git-gui: Refactor file state representations.
It just felt wrong to me that I was using _ as part of the mode argument to display_file to mean "don't care/use existing" and * as part of the mode argument to mean "force to _". So instead use ? to mean "don't care/use existing" and _ to mean "force to _". The code is a lot clearer this way and hopefully it won't drive another developer insane, as it did me. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'git-gui')
-rwxr-xr-xgit-gui20
1 files changed, 10 insertions, 10 deletions
diff --git a/git-gui b/git-gui
index 62545b7..901d932 100755
--- a/git-gui
+++ b/git-gui
@@ -378,7 +378,7 @@ proc read_diff_index {fd after} {
incr z2 -1
display_file \
[string range $buf_rdi $z1 $z2] \
- [string index $buf_rdi [expr {$z1 - 2}]]_
+ [string index $buf_rdi [expr {$z1 - 2}]]?
incr c
}
if {$c < $n} {
@@ -407,7 +407,7 @@ proc read_diff_files {fd after} {
incr z2 -1
display_file \
[string range $buf_rdf $z1 $z2] \
- _[string index $buf_rdf [expr {$z1 - 2}]]
+ ?[string index $buf_rdf [expr {$z1 - 2}]]
incr c
}
if {$c < $n} {
@@ -426,7 +426,7 @@ proc read_ls_others {fd after} {
set pck [split $buf_rlo "\0"]
set buf_rlo [lindex $pck end]
foreach p [lrange $pck 0 end-1] {
- display_file $p _O
+ display_file $p ?O
}
rescan_done $fd buf_rlo $after
}
@@ -1151,15 +1151,15 @@ proc merge_state {path new_state} {
set icon [lindex $info 1]
}
- if {$s0 eq {_}} {
+ if {$s0 eq {?}} {
set s0 [string index $state 0]
- } elseif {$s0 eq {*}} {
+ } elseif {$s0 eq {_}} {
set s0 _
}
- if {$s1 eq {_}} {
+ if {$s1 eq {?}} {
set s1 [string index $state 1]
- } elseif {$s1 eq {*}} {
+ } elseif {$s1 eq {_}} {
set s1 _
}
@@ -1303,15 +1303,15 @@ proc write_update_index {fd pathList totalCnt batch msg after} {
switch -glob -- [lindex $file_states($path) 0] {
AD -
MD -
- _D {set new D*}
+ _D {set new D_}
_M -
MM -
- M_ {set new M*}
+ M_ {set new M_}
_O -
AM -
- A_ {set new A*}
+ A_ {set new A_}
?? {continue}
}