equal
deleted
inserted
replaced
486 |
486 |
487 /* This means the next status call will have to actually check its content |
487 /* This means the next status call will have to actually check its content |
488 to make sure it is correct. */ |
488 to make sure it is correct. */ |
489 static PyObject *dirstate_item_set_possibly_dirty(dirstateItemObject *self) |
489 static PyObject *dirstate_item_set_possibly_dirty(dirstateItemObject *self) |
490 { |
490 { |
491 if (self->flags |= dirstate_flag_possibly_dirty) { |
491 self->flags |= dirstate_flag_possibly_dirty; |
492 Py_RETURN_NONE; |
492 Py_RETURN_NONE; |
493 } |
|
494 } |
493 } |
495 |
494 |
496 /* See docstring of the python implementation for details */ |
495 /* See docstring of the python implementation for details */ |
497 static PyObject *dirstate_item_set_clean(dirstateItemObject *self, |
496 static PyObject *dirstate_item_set_clean(dirstateItemObject *self, |
498 PyObject *args) |
497 PyObject *args) |