summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 48027a9)
raw | patch | inline | side by side (parent: 48027a9)
author | Kevin Ballard <kevin@sb.org> | |
Thu, 18 Dec 2008 09:26:48 +0000 (01:26 -0800) | ||
committer | Paul Mackerras <paulus@samba.org> | |
Sun, 21 Dec 2008 23:16:18 +0000 (10:16 +1100) |
When parsing commits, gitk treats the headers of the commit as tcl
lists. This causes errors if the header contains an unbalanced quote
or open brace. Splitting the line on spaces allows us to treat it as
a set of words instead of as a tcl list, which prevents errors.
Signed-off-by: Kevin Ballard <kevin@sb.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
lists. This causes errors if the header contains an unbalanced quote
or open brace. Splitting the line on spaces allows us to treat it as
a set of words instead of as a tcl list, which prevents errors.
Signed-off-by: Kevin Ballard <kevin@sb.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
gitk | patch | blob | history |
index 6d9e528d2c55e11237280dc61bf86eaf8dc299ef..d72196911cf69110c299660929916bda2ce88ad6 100755 (executable)
--- a/gitk
+++ b/gitk
set header [string range $contents 0 [expr {$hdrend - 1}]]
set comment [string range $contents [expr {$hdrend + 2}] end]
foreach line [split $header "\n"] {
+ set line [split $line " "]
set tag [lindex $line 0]
if {$tag == "author"} {
set audate [lindex $line end-1]
- set auname [lrange $line 1 end-2]
+ set auname [join [lrange $line 1 end-2] " "]
} elseif {$tag == "committer"} {
set comdate [lindex $line end-1]
- set comname [lrange $line 1 end-2]
+ set comname [join [lrange $line 1 end-2] " "]
}
}
set headline {}