patch 8.0.1714: term_setsize() does not give an error in a normal buffer v8.0.1714
authorBram Moolenaar <Bram@vim.org>
Sat, 14 Apr 2018 19:31:35 +0000 (21:31 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 14 Apr 2018 19:31:35 +0000 (21:31 +0200)
Problem:    Term_setsize() does not give an error in a normal buffer.
Solution:   Add an error message.

src/terminal.c
src/testdir/test_terminal.vim
src/version.c

index 7162d684c82cce46d233bcdae942b0e78b99ede0..be594c405b06db13c042343fec3caf1b5c6a659b 100644 (file)
@@ -4629,7 +4629,12 @@ f_term_setsize(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
     term_T     *term;
     varnumber_T rows, cols;
 
-    if (buf == NULL || buf->b_term->tl_vterm == NULL)
+    if (buf == NULL)
+    {
+       EMSG(_("E955: Not a terminal buffer"));
+       return;
+    }
+    if (buf->b_term->tl_vterm == NULL)
        return;
     term = buf->b_term;
     rows = get_tv_number(&argvars[1]);
index 137de7ddd60b4e9bced213ea2e2def6ed51a05d2..95a131be7467c078bd73412788c6e52513d7dd70 100644 (file)
@@ -271,6 +271,27 @@ func Test_terminal_scroll()
   call delete('Xtext')
 endfunc
 
+func Test_terminal_scrollback()
+  let buf = Run_shell_in_terminal({})
+  set terminalscroll=100
+  call writefile(range(150), 'Xtext')
+  if has('win32')
+    call term_sendkeys(buf, "type Xtext\<CR>")
+  else
+    call term_sendkeys(buf, "cat Xtext\<CR>")
+  endif
+  let rows = term_getsize(buf)[0]
+  call WaitFor({-> term_getline(buf, rows - 1) =~ '149'})
+  let lines = line('$')
+  call assert_true(lines <= 100)
+  call assert_true(lines > 90)
+
+  call Stop_shell_in_terminal(buf)
+  call term_wait(buf)
+  exe buf . 'bwipe'
+  set terminalscroll&
+endfunc
+
 func Test_terminal_size()
   let cmd = Get_cat_123_cmd()
 
@@ -298,6 +319,7 @@ func Test_terminal_size()
   call assert_equal([7, 30], term_getsize(''))
 
   bwipe!
+  call assert_fails("call term_setsize('', 7, 30)", "E955:")
 
   call term_start(cmd, {'term_rows': 6, 'term_cols': 36})
   let size = term_getsize('')
index b76ccf4cef773195acd772c2bb074ea5ccff2bea..76596f2bf8031c74fcb0942132fb8b72a17743f9 100644 (file)
@@ -762,6 +762,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1714,
 /**/
     1713,
 /**/