Closed GoogleCodeExporter closed 9 years ago
Part 1 has just been fixed by Patch 7.4.474
Fort part 2, does this patch fix it for you?
diff --git a/src/os_unix.c b/src/os_unix.c
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -1961,7 +1961,8 @@ get_x11_thing(get_title, test_only)
}
/* Are Xutf8 functions available? Avoid error from old compilers. */
-#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
+/* AIX does not have Xutf8SetWMPropoerties method */
+#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE) && !defined(_AIX)
# if X_HAVE_UTF8_STRING
# define USE_UTF8_STRING
# endif
Original comment by chrisbr...@googlemail.com
on 11 Oct 2014 at 11:19
Thanks !
I use vim console (I don't have X windows). May be adding a directive if
defined(_AIX) somewhere to solve the problem on the line " #define
USE_UTF8_STRING ".
To solve the link problem I changed the line :
# define USE_UTF8_STRING
to an undefine, like this :
# undef USE_UTF8_STRING
in src/os_unix.c file.
But after tomorrow I will test the patch, with the latest source code (474).
Best regards !
Original comment by Zulolox4...@gmail.com
on 11 Oct 2014 at 12:18
The // comment line should not be there. I tried running the tests but forgot
to remove the line. Fixed in patch 7.4.474.
To detect whether Xutf8SetWMProperties() actually is implemented requires a
configure check. Added by 7.4.475
Original comment by brammool...@gmail.com
on 11 Oct 2014 at 1:01
Thanks a lot !
Original comment by Zulolox4...@gmail.com
on 11 Oct 2014 at 4:48
Original issue reported on code.google.com by
Zulolox4...@gmail.com
on 11 Oct 2014 at 7:44