From 56fcabbd05b85388f2f5188fd1284bcff1ba67a2 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sun, 26 Jun 2016 18:24:05 +0300 Subject: [PATCH] option: Silence linter --- src/nvim/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/option.c b/src/nvim/option.c index 85a4ed40ad..a7b44b372c 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1492,7 +1492,7 @@ do_set ( } else { newval = (char_u *)xstrdup((char *)newval); } - } else if (nextchar == '<') { /* set to global val */ + } else if (nextchar == '<') { // set to global val newval = vim_strsave(*(char_u **)get_varp_scope( &(options[opt_idx]), OPT_GLOBAL)); new_value_alloced = TRUE;