diff src/message.c @ 11561:7ad79766365a v8.0.0663

patch 8.0.0663: unexpected error message only when 'verbose' is set commit https://github.com/vim/vim/commit/f8be461d0284110b321be748fea206d4169b98bb Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 23 20:52:40 2017 +0200 patch 8.0.0663: unexpected error message only when 'verbose' is set Problem: Giving an error message only when 'verbose' set is unexpected. Solution: Give a warning message instead.
author Christian Brabandt <cb@256bit.org>
date Fri, 23 Jun 2017 21:00:03 +0200
parents 121d29004998
children 67cf0d45b006
line wrap: on
line diff
--- a/src/message.c
+++ b/src/message.c
@@ -3471,6 +3471,13 @@ give_warning(char_u *message, int hl)
     --no_wait_return;
 }
 
+    void
+give_warning2(char_u *message, char_u *a1, int hl)
+{
+    vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1);
+    give_warning(IObuff, hl);
+}
+
 /*
  * Advance msg cursor to column "col".
  */