equal
deleted
inserted
replaced
871 bookmarks.setcurrent(repo, None) |
871 bookmarks.setcurrent(repo, None) |
872 |
872 |
873 else: # show bookmarks |
873 else: # show bookmarks |
874 for bmark, n in sorted(marks.iteritems()): |
874 for bmark, n in sorted(marks.iteritems()): |
875 current = repo._bookmarkcurrent |
875 current = repo._bookmarkcurrent |
876 if bmark == current and n == cur: |
876 if bmark == current: |
877 prefix, label = '*', 'bookmarks.current' |
877 prefix, label = '*', 'bookmarks.current' |
878 else: |
878 else: |
879 prefix, label = ' ', '' |
879 prefix, label = ' ', '' |
880 |
880 |
881 if ui.quiet: |
881 if ui.quiet: |