aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNotZed <NotZed@HelixCode.com>2000-05-12 04:45:00 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-05-12 04:45:00 +0800
commit0aafb55e25e436ab2759f51012b03ae70fa07f6f (patch)
tree9380348d0aa39bc0353c8e63456a911268a19b69
parent1e54cba4d328f71b7d1e3d7dfc0b8b95344a4d01 (diff)
downloadgsoc2013-evolution-0aafb55e25e436ab2759f51012b03ae70fa07f6f.tar
gsoc2013-evolution-0aafb55e25e436ab2759f51012b03ae70fa07f6f.tar.gz
gsoc2013-evolution-0aafb55e25e436ab2759f51012b03ae70fa07f6f.tar.bz2
gsoc2013-evolution-0aafb55e25e436ab2759f51012b03ae70fa07f6f.tar.lz
gsoc2013-evolution-0aafb55e25e436ab2759f51012b03ae70fa07f6f.tar.xz
gsoc2013-evolution-0aafb55e25e436ab2759f51012b03ae70fa07f6f.tar.zst
gsoc2013-evolution-0aafb55e25e436ab2759f51012b03ae70fa07f6f.zip
Make sure we mark the ibex as dirty.
2000-05-11 NotZed <NotZed@HelixCode.com> * index.c (ibex_unindex): Make sure we mark the ibex as dirty. svn path=/trunk/; revision=2992
-rw-r--r--libibex/ChangeLog4
-rw-r--r--libibex/index.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/libibex/ChangeLog b/libibex/ChangeLog
index 27661d3012..6a79d0f2bf 100644
--- a/libibex/ChangeLog
+++ b/libibex/ChangeLog
@@ -1,3 +1,7 @@
+2000-05-11 NotZed <NotZed@HelixCode.com>
+
+ * index.c (ibex_unindex): Make sure we mark the ibex as dirty.
+
2000-05-07 NotZed <NotZed@HelixCode.com>
* file.c (ibex_save): New function, only write out the ibex if it
diff --git a/libibex/index.c b/libibex/index.c
index 5e3e9cf588..1afedbd251 100644
--- a/libibex/index.c
+++ b/libibex/index.c
@@ -127,6 +127,7 @@ ibex_unindex (ibex *ib, char *name)
ibf->index = -1;
g_tree_remove (ib->files, name);
g_ptr_array_add (ib->oldfiles, ibf);
+ ib->dirty = TRUE;
}
}