annotate runtime/spell/yi.vim @ 15249:544490b69e1d v8.1.0633

patch 8.1.0633: crash when out of memory while opening a terminal window commit https://github.com/vim/vim/commit/cd929f7ba8cc5b6d6dcf35c8b34124e969fed6b8 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 24 21:38:45 2018 +0100 patch 8.1.0633: crash when out of memory while opening a terminal window Problem: Crash when out of memory while opening a terminal window. Solution: Handle out-of-memory more gracefully.
author Bram Moolenaar <Bram@vim.org>
date Mon, 24 Dec 2018 21:45:05 +0100
parents f88526ade026
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
486
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
1 " For Yiddish capitals should not be checked. But only change the
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
2 " 'spellcapcheck' option when it is not at its default value.
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
3 let s:spc = &l:spc
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
4 setlocal spc&
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
5 if s:spc == &l:spc
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
6 setlocal spc=
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
7 else
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
8 let &l:spc = s:spc
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
9 endif
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
10 unlet s:spc