comparison src/proto/terminal.pro @ 11690:ce434212d682 v8.0.0728

patch 8.0.0728: the terminal structure is never freed commit https://github.com/vim/vim/commit/96ca27a0ee8ae738cab9fb386984c75c6821e31a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 17 23:20:24 2017 +0200 patch 8.0.0728: the terminal structure is never freed Problem: The terminal structure is never freed. Solution: Free the structure and unreference what it contains.
author Christian Brabandt <cb@256bit.org>
date Mon, 17 Jul 2017 23:30:03 +0200
parents 1ce1376fbbf8
children 74abb6c84984
comparison
equal deleted inserted replaced
11689:d0213284cfb4 11690:ce434212d682
1 /* terminal.c */ 1 /* terminal.c */
2 void ex_terminal(exarg_T *eap); 2 void ex_terminal(exarg_T *eap);
3 void free_terminal(term_T *term);
3 void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel); 4 void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel);
4 void term_update_window(win_T *wp); 5 void term_update_window(win_T *wp);
5 void terminal_loop(void); 6 void terminal_loop(void);
6 /* vim: set ft=c : */ 7 /* vim: set ft=c : */