diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-10-10 23:26:26 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-10-10 23:26:26 -0400 |
commit | 0cd786b9059f55f48602683af6b10e4bfe54cfa7 (patch) | |
tree | 7d72945a1154842dd3942f86407cf69693490692 | |
parent | 25baeb39e3e93325bdbacbb96fd4f6d1dc1a3250 (diff) | |
download | rneovim-0cd786b9059f55f48602683af6b10e4bfe54cfa7.tar.gz rneovim-0cd786b9059f55f48602683af6b10e4bfe54cfa7.tar.bz2 rneovim-0cd786b9059f55f48602683af6b10e4bfe54cfa7.zip |
lint
-rw-r--r-- | src/nvim/ex_getln.c | 5 |
1 files changed, 3 insertions, 2 deletions
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. |