0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 7.4.1476

Problem:    Function arguments marked as unused while they are not.
Solution:   Remove UNUSED. (Yegappan Lakshmanan)
This commit is contained in:
Bram Moolenaar
2016-03-03 12:22:53 +01:00
parent 00ded43a5a
commit f1d2501ebe
6 changed files with 12 additions and 10 deletions

View File

@@ -9217,7 +9217,7 @@ f_argidx(typval_T *argvars UNUSED, typval_T *rettv)
* "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 *rettv)
* "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, typval_T *rettv)
* "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 *rettv)
* "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];