Fix small breakages as a result of yesterday's upheavals. Oops.
[sgt/putty] / unicode.c
index 24dfd44..d1428bb 100644 (file)
--- a/unicode.c
+++ b/unicode.c
@@ -971,9 +971,9 @@ int check_compose_internal(int first, int second, int recurse)
     if (recurse == 0) {
        nc = check_compose_internal(second, first, 1);
        if (nc == -1)
-           nc = check_compose(toupper(first), toupper(second), 1);
+           nc = check_compose_internal(toupper(first), toupper(second), 1);
        if (nc == -1)
-           nc = check_compose(toupper(second), toupper(first), 1);
+           nc = check_compose_internal(toupper(second), toupper(first), 1);
     }
     return nc;
 }