mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 01:02:24 +00:00
Fix small breakages as a result of yesterday's upheavals. Oops.
[originally from svn r2610]
This commit is contained in:
parent
b5e348c872
commit
abfe064c7b
@ -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;
|
||||
}
|
||||
|
@ -201,6 +201,7 @@ void EnableSizeTip(int bEnable);
|
||||
/*
|
||||
* Exports from unicode.c.
|
||||
*/
|
||||
struct unicode_data;
|
||||
void init_ucs(Config *, struct unicode_data *);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user