summaryrefslogtreecommitdiff
path: root/lib/blame.tcl
diff options
context:
space:
mode:
authorLibravatar Shawn O. Pearce <spearce@spearce.org>2007-07-08 21:10:03 -0400
committerLibravatar Shawn O. Pearce <spearce@spearce.org>2007-07-08 21:10:03 -0400
commit4ca131250c9e56efec638831d6157aaf4f130be9 (patch)
tree20bcc5c7494e6b411d0bf2c42249205fdf311506 /lib/blame.tcl
parentgit-gui: use "blame -w -C -C" for "where did it come from, originally?" (diff)
parentgit-gui: Skip nicknames when selecting author initials (diff)
downloadtgif-4ca131250c9e56efec638831d6157aaf4f130be9.tar.xz
Merge branch 'maint'
* maint: git-gui: Skip nicknames when selecting author initials
Diffstat (limited to 'lib/blame.tcl')
-rw-r--r--lib/blame.tcl4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/blame.tcl b/lib/blame.tcl
index dcdb11b1b6..76b5168fb3 100644
--- a/lib/blame.tcl
+++ b/lib/blame.tcl
@@ -556,6 +556,10 @@ method _read_blame {fd cur_w cur_d cur_s} {
set a_name {}
catch {set a_name $header($cmit,author)}
while {$a_name ne {}} {
+ if {$author_abbr ne {}
+ && [string index $a_name 0] eq {'}} {
+ regsub {^'[^']+'\s+} $a_name {} a_name
+ }
if {![regexp {^([[:upper:]])} $a_name _a]} break
append author_abbr $_a
unset _a