diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-29 01:23:17 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-29 18:40:48 -0400 |
commit | 9d28875d50db01853944d96200579d44a9f973f6 (patch) | |
tree | 66e4f021233bc14ed70e8a94766d52cd57c25ff2 /src/nvim/indent.c | |
parent | 4564f2c54f2ab3af500cc81a3802570b57123a51 (diff) | |
download | rneovim-9d28875d50db01853944d96200579d44a9f973f6.tar.gz rneovim-9d28875d50db01853944d96200579d44a9f973f6.tar.bz2 rneovim-9d28875d50db01853944d96200579d44a9f973f6.zip |
vim-patch:8.1.0874: using old style comments in new file
Problem: Using old style comments in new file.
Solution: Convert to // comments in new file. (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/9c46efd7dc57c1a8eae5137d05c7e67c4f82c3d7
Diffstat (limited to 'src/nvim/indent.c')
-rw-r--r-- | src/nvim/indent.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/nvim/indent.c b/src/nvim/indent.c index 92ecbe160b..8fa61515ef 100644 --- a/src/nvim/indent.c +++ b/src/nvim/indent.c @@ -429,11 +429,9 @@ int get_number_indent(linenr_T lnum) return (int)col; } -/* - * Return appropriate space number for breakindent, taking influencing - * parameters into account. Window must be specified, since it is not - * necessarily always the current one. - */ +// Return appropriate space number for breakindent, taking influencing +// parameters into account. Window must be specified, since it is not +// necessarily always the current one. int get_breakindent_win(win_T *wp, const char_u *line) FUNC_ATTR_NONNULL_ALL { |