summaryrefslogtreecommitdiff
path: root/src/mbyte.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-25 21:07:46 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-25 21:07:46 +0100
commitfb1db0e3550355e10ac86c4a4af21209c5456a66 (patch)
tree8e4d3ca0ae832c0bdf759c8944a8c388ad3cab95 /src/mbyte.c
parentbe5d998d0ea2226f1f7180c32b19df17ad674853 (diff)
downloadvim-git-fb1db0e3550355e10ac86c4a4af21209c5456a66.tar.gz
patch 8.0.1342: cannot build with Motif and multi-bytev8.0.1342
Problem: Cannot build with Motif and multi-byte. (Mohamed Boughaba) Solution: Use the right input method status flag. (closes #2374)
Diffstat (limited to 'src/mbyte.c')
-rw-r--r--src/mbyte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbyte.c b/src/mbyte.c
index cf60db07f..3ebd183c9 100644
--- a/src/mbyte.c
+++ b/src/mbyte.c
@@ -5922,7 +5922,7 @@ im_set_active(int active_arg)
if (active != im_get_status())
{
call_imactivatefunc(active);
- im_is_active = active;
+ xim_has_focus = active;
}
return;
}