diff options
author | James McCoy <jamessan@jamessan.com> | 2021-02-06 09:06:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 09:06:34 -0500 |
commit | e455f0ba2dc278e4374098c60afa79e1abd3bd3b (patch) | |
tree | ec721c684c925dac096b5a6885e0cf9015538383 /src/nvim/os/pty_process_unix.h | |
parent | f4f6cce952c1233136f243e76d096e3aaa0b1689 (diff) | |
parent | 33f92fe025dc326020fbb953f8c042711016fea8 (diff) | |
download | rneovim-e455f0ba2dc278e4374098c60afa79e1abd3bd3b.tar.gz rneovim-e455f0ba2dc278e4374098c60afa79e1abd3bd3b.tar.bz2 rneovim-e455f0ba2dc278e4374098c60afa79e1abd3bd3b.zip |
Merge pull request #13876 from jamessan/pty-term
fix(pty): Always use $TERM from the job's env dict
Diffstat (limited to 'src/nvim/os/pty_process_unix.h')
-rw-r--r-- | src/nvim/os/pty_process_unix.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/os/pty_process_unix.h b/src/nvim/os/pty_process_unix.h index f7c57b3839..8c822eafad 100644 --- a/src/nvim/os/pty_process_unix.h +++ b/src/nvim/os/pty_process_unix.h @@ -17,7 +17,6 @@ static inline PtyProcess pty_process_init(Loop *loop, void *data) { PtyProcess rv; rv.process = process_init(loop, kProcessTypePty, data); - rv.term_name = NULL; rv.width = 80; rv.height = 24; rv.tty_fd = -1; |