summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-04 17:35:05 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-04 17:35:05 +0200
commite809a4ed3014fbf717c936c727291b5f038829a5 (patch)
tree5674e27df9d3158e318acb2d9656f98a1bc237dc
parent790c18bfa5dfeca51749b752dddc41e60cb3fa54 (diff)
downloadvim-git-e809a4ed3014fbf717c936c727291b5f038829a5.tar.gz
patch 8.1.1630: various small problemsv8.1.1630
Problem: Various small problems. Solution: Various small improvements.
-rw-r--r--src/gui_beval.c2
-rw-r--r--src/list.c2
-rw-r--r--src/menu.c2
-rw-r--r--src/message.c2
-rw-r--r--src/misc2.c2
-rw-r--r--src/os_vms_conf.h2
-rw-r--r--src/testdir/Make_vms.mms2
-rw-r--r--src/testdir/test_terminal.vim5
-rw-r--r--src/version.c2
9 files changed, 10 insertions, 11 deletions
diff --git a/src/gui_beval.c b/src/gui_beval.c
index f4309b8c3..68d30e35f 100644
--- a/src/gui_beval.c
+++ b/src/gui_beval.c
@@ -107,7 +107,7 @@ gui_mch_create_beval_area(
return NULL;
}
- beval = (BalloonEval *)alloc_clear(sizeof(BalloonEval));
+ beval = ALLOC_CLEAR_ONE(BalloonEval);
if (beval != NULL)
{
#ifdef FEAT_GUI_GTK
diff --git a/src/list.c b/src/list.c
index e7a4f9941..e1aa2d1a0 100644
--- a/src/list.c
+++ b/src/list.c
@@ -130,7 +130,7 @@ rettv_list_alloc_id(typval_T *rettv, alloc_id_T id UNUSED)
/*
- * Set a list as the return value
+ * Set a list as the return value. Increments the reference count.
*/
void
rettv_list_set(typval_T *rettv, list_T *l)
diff --git a/src/menu.c b/src/menu.c
index f32fe4992..5cdf50144 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -583,7 +583,7 @@ add_menu_path(
}
/* Not already there, so lets add it */
- menu = (vimmenu_T *)alloc_clear(sizeof(vimmenu_T));
+ menu = ALLOC_CLEAR_ONE(vimmenu_T);
if (menu == NULL)
goto erret;
diff --git a/src/message.c b/src/message.c
index 26a3e3ada..c5e73ba48 100644
--- a/src/message.c
+++ b/src/message.c
@@ -652,7 +652,7 @@ emsg_core(char_u *s)
redir_write(s, -1);
}
#ifdef FEAT_JOB_CHANNEL
- ch_log(NULL, "ERROR: %s", (char *)s);
+ ch_log(NULL, "ERROR silent: %s", (char *)s);
#endif
return TRUE;
}
diff --git a/src/misc2.c b/src/misc2.c
index d1615b1d1..be9233f5b 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -1193,9 +1193,7 @@ free_all_mem(void)
buf = firstbuf;
}
-# ifdef FEAT_ARABIC
free_cmdline_buf();
-# endif
/* Clear registers. */
clear_registers();
diff --git a/src/os_vms_conf.h b/src/os_vms_conf.h
index 6bc6efb34..7588caebf 100644
--- a/src/os_vms_conf.h
+++ b/src/os_vms_conf.h
@@ -24,7 +24,7 @@
#define HAVE_DATE_TIME
/* Defined to the size of an int */
-#define VIM_SIZEOF_INT 4
+#define VIM_SIZEOF_INT 4
/* #undef USEBCOPY */
#define USEMEMMOVE
diff --git a/src/testdir/Make_vms.mms b/src/testdir/Make_vms.mms
index 88aff09e1..bb30618f9 100644
--- a/src/testdir/Make_vms.mms
+++ b/src/testdir/Make_vms.mms
@@ -4,7 +4,7 @@
# Authors: Zoltan Arpadffy, <arpadffy@polarhome.com>
# Sandor Kopanyi, <sandor.kopanyi@mailbox.hu>
#
-# Last change: 2016 Nov 04
+# Last change: 2019 May 31
#
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
# Edit the lines in the Configuration section below to select.
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim
index cdaa94100..fa9eb1e99 100644
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -1187,11 +1187,10 @@ func Test_terminal_dumpdiff_options()
quit
call assert_equal(1, winnr('$'))
- let width = winwidth(0)
call term_dumpdiff('dumps/Test_popup_command_01.dump', 'dumps/Test_popup_command_02.dump', {'vertical': 0, 'term_rows': 13, 'term_name': 'something else'})
call assert_equal(2, winnr('$'))
- call assert_equal(width, winwidth(winnr()))
- call assert_equal(13, winheight(winnr()))
+ call assert_equal(&columns, winwidth(0))
+ call assert_equal(13, winheight(0))
call assert_equal('something else', bufname('%'))
quit
diff --git a/src/version.c b/src/version.c
index 258605bad..90f8e0853 100644
--- a/src/version.c
+++ b/src/version.c
@@ -778,6 +778,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1630,
+/**/
1629,
/**/
1628,