From 0cd786b9059f55f48602683af6b10e4bfe54cfa7 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 10 Oct 2018 23:26:26 -0400 Subject: lint --- src/nvim/ex_getln.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index ac71e2df7e..247b9175aa 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -3524,8 +3524,9 @@ static int ccheck_abbr(int c) { int spos = 0; - if (p_paste || no_abbr) /* no abbreviations or in paste mode */ - return FALSE; + if (p_paste || no_abbr) { // no abbreviations or in paste mode + return false; + } // Do not consider '<,'> be part of the mapping, skip leading whitespace. // Actually accepts any mark. -- cgit