~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_dirstate_helpers_pyx.pyx

  • Committer: INADA Naoki
  • Date: 2011-05-05 09:15:34 UTC
  • mto: (5830.3.3 i18n-msgfmt)
  • mto: This revision was merged to the branch mainline in revision 5873.
  • Revision ID: songofacandy@gmail.com-20110505091534-7sv835xpofwrmpt4
Add update-pot command to Makefile and tools/bzrgettext script that
extracts help text from bzr commands.

Show diffs side-by-side

added added

removed removed

Lines of Context:
941
941
            # re-writing a dirstate for just this
942
942
            worth_saving = 0
943
943
    elif minikind == c'l':
944
 
        if saved_minikind == c'l':
945
 
            # If the object hasn't changed kind, it isn't worth saving the
946
 
            # dirstate just for a symlink. The default is 'fast symlinks' which
947
 
            # save the target in the inode entry, rather than separately. So to
948
 
            # stat, we've already read everything off disk.
949
 
            worth_saving = 0
950
944
        link_or_sha1 = self._read_link(abspath, saved_link_or_sha1)
951
945
        if self._cutoff_time is None:
952
946
            self._sha_cutoff_time()
958
952
            entry[1][0] = ('l', '', stat_value.st_size,
959
953
                           False, DirState.NULLSTAT)
960
954
    if worth_saving:
961
 
        # Note, even though _mark_modified will only set
962
 
        # IN_MEMORY_HASH_MODIFIED, it still isn't worth 
963
 
        self._mark_modified([entry])
 
955
        self._dirblock_state = DirState.IN_MEMORY_MODIFIED
964
956
    return link_or_sha1
965
957
 
966
958