mercurial/bookmarks.py
changeset 24946 c44534209a0a
parent 24945 e0b0fbd47491
child 24947 a02d293a1079
--- a/mercurial/bookmarks.py	Mon Apr 13 22:27:01 2015 -0700
+++ b/mercurial/bookmarks.py	Mon Apr 13 23:03:13 2015 -0700
@@ -106,13 +106,12 @@
         for name, node in self.iteritems():
             fp.write("%s %s\n" % (hex(node), encoding.fromlocal(name)))
 
-def readcurrent(repo):
-    '''Get the current bookmark
-
-    If we use gittish branches we have a current bookmark that
-    we are on. This function returns the name of the bookmark. It
-    is stored in .hg/bookmarks.current
-    '''
+def readactive(repo):
+    """
+    Get the active bookmark. We can have an active bookmark that updates
+    itself as we commit. This function returns the name of that bookmark.
+    It is stored in .hg/bookmarks.current
+    """
     mark = None
     try:
         file = repo.vfs('bookmarks.current')