diff src/eval.c @ 8368:db2a07b710ed v7.4.1476

commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 3 12:22:53 2016 +0100 patch 7.4.1476 Problem: Function arguments marked as unused while they are not. Solution: Remove UNUSED. (Yegappan Lakshmanan)
author Christian Brabandt <cb@256bit.org>
date Thu, 03 Mar 2016 12:30:05 +0100
parents 991d8fd4d841
children 892d7dcf17ec
line wrap: on
line diff
--- a/src/eval.c
+++ b/src/eval.c
@@ -9217,7 +9217,7 @@ f_argidx(typval_T *argvars UNUSED, typva
  * "arglistid()" function
  */
     static void
-f_arglistid(typval_T *argvars UNUSED, typval_T *rettv)
+f_arglistid(typval_T *argvars, typval_T *rettv)
 {
     win_T	*wp;
 
@@ -17782,7 +17782,7 @@ f_round(typval_T *argvars, typval_T *ret
  * "screenattr()" function
  */
     static void
-f_screenattr(typval_T *argvars UNUSED, typval_T *rettv)
+f_screenattr(typval_T *argvars, typval_T *rettv)
 {
     int		row;
     int		col;
@@ -17802,7 +17802,7 @@ f_screenattr(typval_T *argvars UNUSED, t
  * "screenchar()" function
  */
     static void
-f_screenchar(typval_T *argvars UNUSED, typval_T *rettv)
+f_screenchar(typval_T *argvars, typval_T *rettv)
 {
     int		row;
     int		col;
@@ -20969,7 +20969,7 @@ f_virtcol(typval_T *argvars, typval_T *r
  * "visualmode()" function
  */
     static void
-f_visualmode(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
+f_visualmode(typval_T *argvars, typval_T *rettv)
 {
     char_u	str[2];