aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/edit.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-01-31 15:44:54 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-01-31 15:44:54 +0800
commit88ba0774e202126a432521d5cb14bd2187ef65a2 (patch)
treeeca5f0142ffb0b0318a9d9087dbaad6195884c02 /src/nvim/edit.c
parenteda957db10e97b28a2734e0391d986676927d963 (diff)
downloadrneovim-88ba0774e202126a432521d5cb14bd2187ef65a2.tar.gz
rneovim-88ba0774e202126a432521d5cb14bd2187ef65a2.tar.bz2
rneovim-88ba0774e202126a432521d5cb14bd2187ef65a2.zip
vim-patch:8.2.3932: C line comment not formatted properly
Problem: C line comment not formatted properly. Solution: If a line comment follows after "#if" the next line is not the end of a paragraph. https://github.com/vim/vim/commit/264d3ddac0f9474816c20a0e92014d6f7f4b08ac
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r--src/nvim/edit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c
index 47e1cc3351..3d2cfa5c2a 100644
--- a/src/nvim/edit.c
+++ b/src/nvim/edit.c
@@ -6137,8 +6137,7 @@ static void internal_format(int textwidth, int second_indent, int flags, int for
if (curwin->w_cursor.col <= (colnr_T)wantcol) {
break;
}
- } else if ((cc >= 0x100 || !utf_allow_break_before(cc))
- && fo_multibyte) {
+ } else if ((cc >= 0x100 || !utf_allow_break_before(cc)) && fo_multibyte) {
int ncc;
bool allow_break;