diff options
author | James McCoy <jamessan@jamessan.com> | 2017-12-15 19:10:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 19:10:25 -0500 |
commit | 7afd26a6d189d1ca798f93db8661bd656a37265f (patch) | |
tree | 1c2aa0dbd479f322fa6d8221b9f141fc6e2d3a44 /src/nvim/spell.c | |
parent | 6ff13d78b7eb0a1fae2e2e8cdd054072e1467158 (diff) | |
parent | dcb2780b834d4df006f55a0475e03bd2a38ac344 (diff) | |
download | rneovim-7afd26a6d189d1ca798f93db8661bd656a37265f.tar.gz rneovim-7afd26a6d189d1ca798f93db8661bd656a37265f.tar.bz2 rneovim-7afd26a6d189d1ca798f93db8661bd656a37265f.zip |
Merge pull request #7306 from DarkDeepBlue/vim-8.0.0074
vim-patch:8.0.0074
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r-- | src/nvim/spell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 42c9bcc0ee..c837038659 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -5355,7 +5355,7 @@ add_sound_suggest ( // Find the word nr in the soundfold tree. sfwordnr = soundfold_find(slang, goodword); if (sfwordnr < 0) { - EMSG2(_(e_intern2), "add_sound_suggest()"); + internal_error("add_sound_suggest()"); return; } |