Fix obscure typo in case conversion routine (#113469).
authorNoah Levitt <nlevitt@columbia.edu>
Wed, 21 May 2003 21:58:31 +0000 (21:58 +0000)
committerNoah Levitt <nlevitt@src.gnome.org>
Wed, 21 May 2003 21:58:31 +0000 (21:58 +0000)
2003-05-21  Noah Levitt  <nlevitt@columbia.edu>

* glib/guniprop.c: Fix obscure typo in case conversion routine
(#113469).

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/guniprop.c

index fb57b85..5c8b6e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/guniprop.c: Fix obscure typo in case conversion routine
+       (#113469).
+
 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: wrap 64-bit MIN/MAX limit constants in
index fb57b85..5c8b6e6 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/guniprop.c: Fix obscure typo in case conversion routine
+       (#113469).
+
 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: wrap 64-bit MIN/MAX limit constants in
index fb57b85..5c8b6e6 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/guniprop.c: Fix obscure typo in case conversion routine
+       (#113469).
+
 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: wrap 64-bit MIN/MAX limit constants in
index fb57b85..5c8b6e6 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/guniprop.c: Fix obscure typo in case conversion routine
+       (#113469).
+
 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: wrap 64-bit MIN/MAX limit constants in
index fb57b85..5c8b6e6 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/guniprop.c: Fix obscure typo in case conversion routine
+       (#113469).
+
 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: wrap 64-bit MIN/MAX limit constants in
index fb57b85..5c8b6e6 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/guniprop.c: Fix obscure typo in case conversion routine
+       (#113469).
+
 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: wrap 64-bit MIN/MAX limit constants in
index 503df3c..04fb0a3 100644 (file)
@@ -571,7 +571,7 @@ output_special_case (gchar *out_buffer,
 
   if (which == 1)
     {
-      while (p[0] && p[1])
+      while (p[0] || p[1])
        p += 2;
       p += 2;
     }