X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/4044fc45ca4a742c0ff29a49faca7cc9db99b251..07b2a9cdcc1dda55516a50708556f1f65c6e9418:/unicode.c diff --git a/unicode.c b/unicode.c index 24dfd448..d1428bb6 100644 --- 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; }