Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2006-10-18 06:55:45 +0400
committerMiguel de Icaza <miguel@gnome.org>2006-10-18 06:55:45 +0400
commitfcadb361d9a3ef8d77cc69ac9f520e18b4284af3 (patch)
tree3a002507cd652413f062d366ce2259631bf871c6 /eglib
parent612016b266186c18d020733d51290729d5e6f306 (diff)
Another embarassing one
svn path=/trunk/mono/; revision=66780
Diffstat (limited to 'eglib')
-rw-r--r--eglib/ChangeLog2
-rw-r--r--eglib/src/gstr.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/eglib/ChangeLog b/eglib/ChangeLog
index b75ceb729cb..a30d26f6c75 100644
--- a/eglib/ChangeLog
+++ b/eglib/ChangeLog
@@ -1,5 +1,7 @@
2006-10-17 Miguel de Icaza <miguel@novell.com>
+ * src/gstr.c (g_strdown): Actually move.
+
* src/gmarkup.c (g_markup_parse_context_parse): Accept dots in the
sequence, reset the state after a closing element.
diff --git a/eglib/src/gstr.c b/eglib/src/gstr.c
index 3de12c17324..68bc3c520c0 100644
--- a/eglib/src/gstr.c
+++ b/eglib/src/gstr.c
@@ -516,6 +516,7 @@ g_strdown (gchar *string)
while (*string){
*string = tolower (*string);
+ string++;
}
}