Skip to content

Commit d8dc179

Browse files
committed
patch 8.0.0845: MS-Windows: missing semicolon in terminal code
Problem: MS-Windows: missing semicolon in terminal code. Solution: Add it. (Naruhiko Nishino, closes #1923)
1 parent e0ab979 commit d8dc179

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/terminal.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
*
3838
* TODO:
3939
* - don't allow exiting Vim when a terminal is still running a job
40+
* - MS-Windows: no redraw for 'updatetime' #1915
4041
* - in bash mouse clicks are inserting characters.
4142
* - mouse scroll: when over other window, scroll that window.
4243
* - For the scrollback buffer store lines in the buffer, only attributes in
@@ -54,6 +55,7 @@
5455
* - do not store terminal window in viminfo. Or prefix term:// ?
5556
* - add a character in :ls output
5657
* - add 't' to mode()
58+
* - set 'filetype' to "terminal"?
5759
* - use win_del_lines() to make scroll-up efficient.
5860
* - implement term_setsize()
5961
* - add test for giving error for invalid 'termsize' value.
@@ -968,7 +970,7 @@ terminal_loop(void)
968970
/* We don't know if the job can handle CTRL-C itself or not, this
969971
* may kill the shell instead of killing the command running in the
970972
* shell. */
971-
mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit")
973+
mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit");
972974
#endif
973975

974976
if (c == (termkey == 0 ? Ctrl_W : termkey))

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
845,
772774
/**/
773775
844,
774776
/**/

0 commit comments

Comments
 (0)