? mkinstalldirs Index: ChangeLog =================================================================== RCS file: /cvs/gnome/gconf/ChangeLog,v retrieving revision 1.563 diff -u -u -r1.563 ChangeLog --- ChangeLog 30 Aug 2004 08:49:09 -0000 1.563 +++ ChangeLog 8 Sep 2004 16:23:57 -0000 @@ -1,3 +1,9 @@ +2004-09-08 Fernando Herrera + + * backends/markup-tree.c: (markup_entry_get_value): Read the schema + file until a matching locale is found and the C one. This solves + bug #152175 when current locale is before the C. + 2004-08-30 Mark McLoughlin * configure.in: post-release bump to 2.7.93. Index: backends/markup-tree.c =================================================================== RCS file: /cvs/gnome/gconf/backends/markup-tree.c,v retrieving revision 1.15 diff -u -u -r1.15 markup-tree.c --- backends/markup-tree.c 25 Aug 2004 21:20:43 -0000 1.15 +++ backends/markup-tree.c 8 Sep 2004 16:24:04 -0000 @@ -1502,7 +1502,7 @@ } /* Quit as soon as we have the best possible locale */ - if (local_schemas[0] != NULL) + if (local_schemas[0] != NULL && c_local_schema != NULL) break; tmp = tmp->next;