annotate runtime/plugin/spellfile.vim @ 34888:a843afce8fcf v9.1.0308

patch 9.1.0308: configure: msgfmt hardcoded Commit: https://github.com/vim/vim/commit/87319173baf7b60b2e21e7d254a46623c53c5899 Author: Vladim?r Marek <vlmarek13@gmail.com> Date: Thu Apr 11 21:54:34 2024 +0200 patch 9.1.0308: configure: msgfmt hardcoded Problem: configure: msgfmt hardcoded (after v9.1.0173) Solution: use $MSGFMT instead of msgfmt in configure script, regenerate the configure script (Vladim?r Marek) fixes: #14515 Signed-off-by: Vladim?r Marek <vlmarek13@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 11 Apr 2024 22:00:03 +0200
parents 4027cefc2aab
children
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
32770
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 649
diff changeset
2 " Maintainer: The Vim Project <https://github.com/vim/vim>
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 649
diff changeset
3 " Last Change: 2023 Aug 10
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 649
diff changeset
4 " Former Maintainer: Bram Moolenaar <Bram@vim.org>
649
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
5
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
6 " Exit quickly when:
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
7 " - this plugin was already loaded
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
8 " - when 'compatible' is set
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
9 " - some autocommands are already taking care of spell files
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
10 if exists("loaded_spellfile_plugin") || &cp || exists("#SpellFileMissing")
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
11 finish
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
12 endif
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
13 let loaded_spellfile_plugin = 1
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
14
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
15 " The function is in the autoload directory.
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
16 autocmd SpellFileMissing * call spellfile#LoadFile(expand('<amatch>'))