diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-31 17:30:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-31 17:30:51 +0100 |
commit | d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb (patch) | |
tree | f33b2f999a51f5ecd5b42c01b0d837ab8e660b44 /src/gui_w32.c | |
parent | bbb3339dbfa2067fab616698739097df06aa5e6c (diff) | |
download | vim-git-d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb.tar.gz |
patch 7.4.1225v7.4.1225
Problem: Still a few old style function declarations.
Solution: Make them new style. (Hirohito Higashi)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 6a0e0a359..05d8e3005 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -2292,7 +2292,7 @@ im_set_active(int active) * Get IM status. When IM is on, return not 0. Else return 0. */ int -im_get_status() +im_get_status(void) { return global_ime_get_status(); } |