From c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Sat, 9 Mar 2002 21:28:03 +0000 Subject: Bumped version number to 0.19.99.7 2002-03-09 Chris Toshok * configure.in: Bumped version number to 0.19.99.7 * gal/widgets/e-unicode.c (e_utf8_strstrcasedecomp): we want to return o from here on success, not p, since p is incremented one unicode character past the point where the substring begins. (e_utf8_strstrcase): same. svn path=/trunk/; revision=16000 --- widgets/misc/e-unicode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c index a39e517f71..1a3f606732 100644 --- a/widgets/misc/e-unicode.c +++ b/widgets/misc/e-unicode.c @@ -104,7 +104,7 @@ e_utf8_strstrcasedecomp (const gchar *haystack, const gchar *needle) npos++; } if (npos == nlen) { - return p; + return o; } } } @@ -152,7 +152,7 @@ e_utf8_strstrcase (const gchar *haystack, const gchar *needle) npos++; } if (npos == nlen) { - return p; + return o; } } o = p; -- cgit v1.2.3