Fix obscure typo in case conversion routine (#113469).

2003-05-21  Noah Levitt  <nlevitt@columbia.edu>

	* glib/guniprop.c: Fix obscure typo in case conversion routine
	(#113469).
This commit is contained in:
Noah Levitt 2003-05-21 21:58:31 +00:00 committed by Noah Levitt
parent 7a1dcc18f1
commit cd1e44fd2b
7 changed files with 31 additions and 1 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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;
}