mercurial/cmdutil.py
changeset 29103 f2aa1c3e7e77
parent 28999 790c076cd4a2
child 29137 d115cbf5980b
equal deleted inserted replaced
29102:22c53b3a390d 29103:f2aa1c3e7e77
  3069             modadded = added & dsmodified
  3069             modadded = added & dsmodified
  3070             added -= modadded
  3070             added -= modadded
  3071 
  3071 
  3072             # tell newly modified apart.
  3072             # tell newly modified apart.
  3073             dsmodified &= modified
  3073             dsmodified &= modified
  3074             dsmodified |= modified & dsadded # dirstate added may needs backup
  3074             dsmodified |= modified & dsadded # dirstate added may need backup
  3075             modified -= dsmodified
  3075             modified -= dsmodified
  3076 
  3076 
  3077             # We need to wait for some post-processing to update this set
  3077             # We need to wait for some post-processing to update this set
  3078             # before making the distinction. The dirstate will be used for
  3078             # before making the distinction. The dirstate will be used for
  3079             # that purpose.
  3079             # that purpose.