Show More
@@ -264,9 +264,8 b' proc readrefs {} {' | |||
|
264 | 264 | regsub -all "\r\n" $tags "\n" tags |
|
265 | 265 | set lines [split $tags "\n"] |
|
266 | 266 | foreach f $lines { |
|
267 | set f [regexp -all -inline {\S+} $f] | |
|
268 | set direct [lindex $f 0] | |
|
269 | set full [lindex $f 1] | |
|
267 | regexp {(\S+)$} $f full | |
|
268 | regsub {\s+(\S+)$} $f "" direct | |
|
270 | 269 | set sha [split $full ':'] |
|
271 | 270 | set tag [lindex $sha 1] |
|
272 | 271 | lappend tagids($direct) $tag |
General Comments 0
You need to be logged in to leave comments.
Login now