Mercurial > vim
changeset 11341:98abcd1227dc v8.0.0556
patch 8.0.0556: getting window position fails if GUI and term possible
commit https://github.com/vim/vim/commit/7860bac57baeda408d5ef84f3334b0e52cc690bd
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Apr 9 15:03:15 2017 +0200
patch 8.0.0556: getting window position fails if GUI and term possible
Problem: Getting the window position fails if both the GUI and term
code is built in.
Solution: Return after getting the GUI window position. (Kazunobu Kuriyama)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 09 Apr 2017 15:15:03 +0200 |
parents | 91a2bb32dfda |
children | 378d2b07e97e |
files | src/evalfunc.c src/version.c |
diffstat | 2 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -5302,6 +5302,7 @@ f_getwinposx(typval_T *argvars UNUSED, t if (gui_mch_get_winpos(&x, &y) == OK) rettv->vval.v_number = x; + return; } #endif #if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE) @@ -5328,6 +5329,7 @@ f_getwinposy(typval_T *argvars UNUSED, t if (gui_mch_get_winpos(&x, &y) == OK) rettv->vval.v_number = y; + return; } #endif #if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE) @@ -7715,6 +7717,7 @@ static int mkdir_recurse(char_u *dir, in /* * Create the directory in which "dir" is located, and higher levels when * needed. + * Return OK or FAIL. */ static int mkdir_recurse(char_u *dir, int prot)