diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-05 18:02:24 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 11:49:59 -0400 |
commit | 41dbb69a85302e9af5c8b76e0d8217ad7d197f8a (patch) | |
tree | 4c5e39b95785f2f6dca422a7ceb0ac9dc442bdff /src/nvim/misc1.c | |
parent | 47d52e1578aa6dd0b55d397d24fc929b95d586f2 (diff) | |
download | rneovim-41dbb69a85302e9af5c8b76e0d8217ad7d197f8a.tar.gz rneovim-41dbb69a85302e9af5c8b76e0d8217ad7d197f8a.tar.bz2 rneovim-41dbb69a85302e9af5c8b76e0d8217ad7d197f8a.zip |
lint
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 3108d0316c..d2ecb9a74b 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -165,7 +165,7 @@ open_line ( *p_extra = NUL; } - u_clearline(); /* cannot do "U" command when adding lines */ + u_clearline(); // cannot do "U" command when adding lines did_si = false; ai_col = 0; @@ -287,7 +287,7 @@ open_line ( */ if (last_char == '{') { did_si = true; // do indent - no_si = TRUE; /* don't delete it when '{' typed */ + no_si = true; // don't delete it when '{' typed } /* * Look for "if" and the like, use 'cinwords'. |