diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-22 21:11:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-22 21:11:53 +0200 |
commit | 613fe7ad2b8e2d4e990cc56596590a23a42c3f7a (patch) | |
tree | 5527ba540d9e47d1546c7010363427f826ca0a5d /src/pty.c | |
parent | 6ed8069c798827ec4448f37bf2795a08fc9cbd05 (diff) | |
download | vim-git-613fe7ad2b8e2d4e990cc56596590a23a42c3f7a.tar.gz |
patch 8.0.0751: OpenPTY missing with some combination of featuresv8.0.0751
Problem: OpenPTY missing with some combination of features. (Kazunobu
Kuriyama)
Solution: Adjust #ifdef. Also include pty.pro when needed.
Diffstat (limited to 'src/pty.c')
-rw-r--r-- | src/pty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ #include "vim.h" -#if defined(FEAT_GUI) || defined(FEAT_TERMINAL) +#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL) #include <signal.h> |