diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-03 11:55:21 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-03 11:55:21 +0200 |
commit | d8dc1799377027be622d8571545658b20042e92e (patch) | |
tree | bb1bf3a2237c32744c1db05f0d75b012c5b5f9fb /src | |
parent | e0ab979fa7404592eaf4180e6d7d3af4c7787e8f (diff) | |
download | vim-git-d8dc1799377027be622d8571545658b20042e92e.tar.gz |
patch 8.0.0845: MS-Windows: missing semicolon in terminal codev8.0.0845
Problem: MS-Windows: missing semicolon in terminal code.
Solution: Add it. (Naruhiko Nishino, closes #1923)
Diffstat (limited to 'src')
-rw-r--r-- | src/terminal.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/terminal.c b/src/terminal.c index 53edb83c8..edb4b7558 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -37,6 +37,7 @@ * * TODO: * - don't allow exiting Vim when a terminal is still running a job + * - MS-Windows: no redraw for 'updatetime' #1915 * - in bash mouse clicks are inserting characters. * - mouse scroll: when over other window, scroll that window. * - For the scrollback buffer store lines in the buffer, only attributes in @@ -54,6 +55,7 @@ * - do not store terminal window in viminfo. Or prefix term:// ? * - add a character in :ls output * - add 't' to mode() + * - set 'filetype' to "terminal"? * - use win_del_lines() to make scroll-up efficient. * - implement term_setsize() * - add test for giving error for invalid 'termsize' value. @@ -968,7 +970,7 @@ terminal_loop(void) /* We don't know if the job can handle CTRL-C itself or not, this * may kill the shell instead of killing the command running in the * shell. */ - mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit") + mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit"); #endif if (c == (termkey == 0 ? Ctrl_W : termkey)) diff --git a/src/version.c b/src/version.c index ee0a081bf..371146130 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 845, +/**/ 844, /**/ 843, |