Show More
@@ -730,6 +730,12 b' class workingctx(changectx):' | |||||
730 | t.extend(p.tags()) |
|
730 | t.extend(p.tags()) | |
731 | return t |
|
731 | return t | |
732 |
|
732 | |||
|
733 | def bookmarks(self): | |||
|
734 | b = [] | |||
|
735 | for p in self.parents(): | |||
|
736 | b.extend(p.bookmarks()) | |||
|
737 | return b | |||
|
738 | ||||
733 | def children(self): |
|
739 | def children(self): | |
734 | return [] |
|
740 | return [] | |
735 |
|
741 |
General Comments 0
You need to be logged in to leave comments.
Login now