Show More
@@ -715,13 +715,14 b' def delete(repo, tr, names):' | |||
|
715 | 715 | Raises an abort error if mark does not exist. |
|
716 | 716 | """ |
|
717 | 717 | marks = repo._bookmarks |
|
718 | changes = [] | |
|
718 | 719 | for mark in names: |
|
719 | 720 | if mark not in marks: |
|
720 | 721 | raise error.Abort(_("bookmark '%s' does not exist") % mark) |
|
721 | 722 | if mark == repo._activebookmark: |
|
722 | 723 | deactivate(repo) |
|
723 | del marks[mark] | |
|
724 | marks.recordchange(tr) | |
|
724 | changes.append((mark, None)) | |
|
725 | marks.applychanges(repo, tr, changes) | |
|
725 | 726 | |
|
726 | 727 | def rename(repo, tr, old, new, force=False, inactive=False): |
|
727 | 728 | """rename a bookmark from old to new |
General Comments 0
You need to be logged in to leave comments.
Login now