summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-07-24 18:38:16 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-07-24 18:38:16 +0000
commit9ac01d78116aedd4654077a1e3f1d08b062a3c57 (patch)
tree81107ffe40d384750f60c08ac83ecfb8d07adc7e
parentfe8a19953415e06970c5cf45abcf2543fa86c77c (diff)
downloadpango-9ac01d78116aedd4654077a1e3f1d08b062a3c57.tar.gz
Increment past the ';' for a list with multiple elements. (#117180, John
Thu Jul 24 14:35:48 2003 Owen Taylor <otaylor@redhat.com> * pango/pango-utils.c (pango_language_matches): Increment past the ';' for a list with multiple elements. (#117180, John Finlay)
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-1-106
-rw-r--r--ChangeLog.pre-1-46
-rw-r--r--ChangeLog.pre-1-66
-rw-r--r--ChangeLog.pre-1-86
-rw-r--r--pango/pango-utils.c3
6 files changed, 32 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7159bdda..c90f7929 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jul 24 14:35:48 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-utils.c (pango_language_matches): Increment
+ past the ';' for a list with multiple elements. (#117180,
+ John Finlay)
+
2003-07-20 Hans Breuer <hans@breuer.org>
* pango/makefile.msc : updated to generate libtool
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index 7159bdda..c90f7929 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,9 @@
+Thu Jul 24 14:35:48 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-utils.c (pango_language_matches): Increment
+ past the ';' for a list with multiple elements. (#117180,
+ John Finlay)
+
2003-07-20 Hans Breuer <hans@breuer.org>
* pango/makefile.msc : updated to generate libtool
diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4
index 7159bdda..c90f7929 100644
--- a/ChangeLog.pre-1-4
+++ b/ChangeLog.pre-1-4
@@ -1,3 +1,9 @@
+Thu Jul 24 14:35:48 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-utils.c (pango_language_matches): Increment
+ past the ';' for a list with multiple elements. (#117180,
+ John Finlay)
+
2003-07-20 Hans Breuer <hans@breuer.org>
* pango/makefile.msc : updated to generate libtool
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index 7159bdda..c90f7929 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,9 @@
+Thu Jul 24 14:35:48 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-utils.c (pango_language_matches): Increment
+ past the ';' for a list with multiple elements. (#117180,
+ John Finlay)
+
2003-07-20 Hans Breuer <hans@breuer.org>
* pango/makefile.msc : updated to generate libtool
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index 7159bdda..c90f7929 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,9 @@
+Thu Jul 24 14:35:48 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-utils.c (pango_language_matches): Increment
+ past the ';' for a list with multiple elements. (#117180,
+ John Finlay)
+
2003-07-20 Hans Breuer <hans@breuer.org>
* pango/makefile.msc : updated to generate libtool
diff --git a/pango/pango-utils.c b/pango/pango-utils.c
index 96700131..285ae089 100644
--- a/pango/pango-utils.c
+++ b/pango/pango-utils.c
@@ -1142,7 +1142,8 @@ pango_language_matches (PangoLanguage *language,
(lang_str[end - p] == '\0' || lang_str[end - p] == '-')))
return TRUE;
- p = end;
+ if (!done)
+ p = end + 1;
}
return FALSE;