comparison mercurial/cmdutil.py @ 29103:f2aa1c3e7e77

cmdutil: typo fix in comment
author Augie Fackler <augie@google.com>
date Fri, 06 May 2016 14:22:17 -0400
parents 790c076cd4a2
children d115cbf5980b
comparison
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.