tweaks: remove a misplaced (and nested) #ifdef
It was accidentally introduced two weeks ago by commit 1c010d8e
.
master
parent
d6ed174d09
commit
b4a5aedc6c
|
@ -180,7 +180,6 @@ char control_mbrep(const char *c, bool isdata)
|
||||||
* the number of bytes in the sequence, or -1 for an invalid sequence. */
|
* the number of bytes in the sequence, or -1 for an invalid sequence. */
|
||||||
int mbtowide(wchar_t *wc, const char *c)
|
int mbtowide(wchar_t *wc, const char *c)
|
||||||
{
|
{
|
||||||
#ifdef ENABLE_UTF8
|
|
||||||
if ((signed char)*c < 0 && use_utf8) {
|
if ((signed char)*c < 0 && use_utf8) {
|
||||||
unsigned char v1 = (unsigned char)c[0];
|
unsigned char v1 = (unsigned char)c[0];
|
||||||
unsigned char v2 = (unsigned char)c[1] ^ 0x80;
|
unsigned char v2 = (unsigned char)c[1] ^ 0x80;
|
||||||
|
@ -219,7 +218,6 @@ int mbtowide(wchar_t *wc, const char *c)
|
||||||
} else
|
} else
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
*wc = (unsigned int)*c;
|
*wc = (unsigned int)*c;
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue