annotate runtime/plugin/spellfile.vim @ 20567:5e86e00fa712 v8.2.0837

patch 8.2.0837: compiler warning for value set but not used Commit: https://github.com/vim/vim/commit/b60db8ba149b26024e6d871e8634d7fea639252a Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 29 21:38:42 2020 +0200 patch 8.2.0837: compiler warning for value set but not used Problem: Compiler warning for value set but not used. Solution: Move variable inside #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Fri, 29 May 2020 21:45:03 +0200
parents 8157079cea85
children 4027cefc2aab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
649
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
1 " Vim plugin for downloading spell files
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
2 " Maintainer: Bram Moolenaar <Bram@vim.org>
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
3 " Last Change: 2006 Feb 01
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
4
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
5 " Exit quickly when:
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
6 " - this plugin was already loaded
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
7 " - when 'compatible' is set
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
8 " - some autocommands are already taking care of spell files
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
9 if exists("loaded_spellfile_plugin") || &cp || exists("#SpellFileMissing")
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
10 finish
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
11 endif
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
12 let loaded_spellfile_plugin = 1
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
13
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
14 " The function is in the autoload directory.
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
15 autocmd SpellFileMissing * call spellfile#LoadFile(expand('<amatch>'))