aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/spellfile.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-10-06 11:45:14 +0200
committerDundar Göc <gocdundar@gmail.com>2021-10-06 11:50:10 +0200
commite8f87f15d735937f4b548ad40fb8dbaf741f6d0a (patch)
tree6475391ac9c4ac019172c3302c7b3a2f5a655095 /src/nvim/spellfile.c
parentd6c789a57142d4b4425ff7da748c02d14d988cf1 (diff)
downloadrneovim-e8f87f15d735937f4b548ad40fb8dbaf741f6d0a.tar.gz
rneovim-e8f87f15d735937f4b548ad40fb8dbaf741f6d0a.tar.bz2
rneovim-e8f87f15d735937f4b548ad40fb8dbaf741f6d0a.zip
vim-patch:8.1.2395: using old C style comments
Problem: Using old C style comments. Solution: Use // comments where appropriate. https://github.com/vim/vim/commit/0d6f5d9740dbad1b0207f3ab257de806169dd905
Diffstat (limited to 'src/nvim/spellfile.c')
-rw-r--r--src/nvim/spellfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c
index 772275df84..50b12f9dcc 100644
--- a/src/nvim/spellfile.c
+++ b/src/nvim/spellfile.c
@@ -2602,7 +2602,7 @@ static afffile_T *spell_read_aff(spellinfo_T *spin, char_u *fname)
upp = vim_strsave(items[1]);
} else if (is_aff_rule(items, itemcnt, "REP", 2)
|| is_aff_rule(items, itemcnt, "REPSAL", 2)) {
- /* Ignore REP/REPSAL count */;
+ // Ignore REP/REPSAL count
if (!isdigit(*items[1])) {
smsg(_("Expected REP(SAL) count in %s line %d"),
fname, lnum);