diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-01 15:12:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-01 15:12:44 +0200 |
commit | ef8c617b9c4dc262ed34598d7e382237696c3d61 (patch) | |
tree | 58686e56c1291e18d796c8133debfcd93121f352 /runtime/doc/options.txt | |
parent | 8e6cbb72324b6fb25d1a9abd6cc4d102d0e5f14e (diff) | |
download | vim-git-ef8c617b9c4dc262ed34598d7e382237696c3d61.tar.gz |
patch 8.2.1107: 'imactivatefunc' and 'imstatusfunc' are not used in the GUIv8.2.1107
Problem: 'imactivatefunc' and 'imstatusfunc' are not used in the GUI.
Solution: Adjust the #ifdefs. (closes #6367)
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 4e78a2fa6..bd6cc62d6 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -4133,7 +4133,7 @@ A jump table for the options with a short description can be found at |Q_op|. global This option specifies a function that will be called to activate or deactivate the Input Method. - It is not used in the GUI. + It is not used in the MS-Windows GUI version. The expression will be evaluated in the |sandbox| when set from a modeline, see |sandbox-option|. @@ -4242,7 +4242,7 @@ A jump table for the options with a short description can be found at |Q_op|. global This option specifies a function that is called to obtain the status of Input Method. It must return a positive number when IME is active. - It is not used in the GUI. + It is not used in the MS-Windows GUI version. Example: > function ImStatusFunc() |