diff options
-rw-r--r-- | libibex/ChangeLog | 4 | ||||
-rw-r--r-- | libibex/index.c | 1 |
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; } } |