mercurial/cext/parsers.c
changeset 47976 2018753014be
parent 47975 ec178161a8d1
child 47990 0d2a404f1932
equal deleted inserted replaced
47975:ec178161a8d1 47976:2018753014be
   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)