diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-17 14:39:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-17 14:39:07 +0200 |
commit | a83e3962ac0e4bbfef15a072ad9a7390fc255409 (patch) | |
tree | 0593f07a82ffacfeba89d968264eac5c5adf7e2c /src/proto | |
parent | 84ed4ad08486f85948d4fe10a47aa2e312699eb9 (diff) | |
download | vim-git-a83e3962ac0e4bbfef15a072ad9a7390fc255409.tar.gz |
patch 8.0.0952: has('terminal') does not check existence of dll filev8.0.0952
Problem: MS-Windows: has('terminal') does not check existence of dll file.
Solution: Check if the winpty dll file can be loaded. (Ken Takata)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/terminal.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro index 8f2bcd5c6..2b05d341e 100644 --- a/src/proto/terminal.pro +++ b/src/proto/terminal.pro @@ -34,4 +34,5 @@ void f_term_scrape(typval_T *argvars, typval_T *rettv); void f_term_sendkeys(typval_T *argvars, typval_T *rettv); void f_term_start(typval_T *argvars, typval_T *rettv); void f_term_wait(typval_T *argvars, typval_T *rettv); +int terminal_enabled(void); /* vim: set ft=c : */ |