diff src/structs.h @ 11723:1922710ee8fa v8.0.0744

patch 8.0.0744: terminal window does not use a pty commit https://github.com/vim/vim/commit/5a1feb809191e236cadd2884a5f57ad26cd213a3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 22 18:04:08 2017 +0200 patch 8.0.0744: terminal window does not use a pty Problem: A terminal window uses pipes instead of a pty. Solution: Add pty support.
author Christian Brabandt <cb@256bit.org>
date Sat, 22 Jul 2017 18:15:04 +0200
parents 2ec27561dd76
children 74abb6c84984
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -1705,6 +1705,7 @@ typedef struct
     char_u	jo_io_name_buf[4][NUMBUFLEN];
     char_u	*jo_io_name[4];	/* not allocated! */
     int		jo_io_buf[4];
+    int		jo_pty;
     int		jo_modifiable[4];
     int		jo_message[4];
     channel_T	*jo_channel;