summaryrefslogtreecommitdiff
path: root/src/option.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-17 14:13:09 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-17 14:13:09 +0100
commitf4d8b76d304dabc39c06d2344cd4c7b28484811b (patch)
tree56f98aadab44534d6529e802c00bbff8adbf0969 /src/option.h
parent9d4b8caf9eddb2db09395587c621309f4513befa (diff)
downloadvim-git-f4d8b76d304dabc39c06d2344cd4c7b28484811b.tar.gz
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scopev8.2.3528
Problem: 'thesaurus' and 'thesaurusfunc' do not have the same scope. Solution: Make 'thesaurusfunc' global-local.
Diffstat (limited to 'src/option.h')
-rw-r--r--src/option.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/option.h b/src/option.h
index 89cec946d..21ee569b1 100644
--- a/src/option.h
+++ b/src/option.h
@@ -404,7 +404,7 @@ EXTERN char_u *p_cinw; // 'cinwords'
#ifdef FEAT_COMPL_FUNC
EXTERN char_u *p_cfu; // 'completefunc'
EXTERN char_u *p_ofu; // 'omnifunc'
-EXTERN char_u *p_thsfu; // 'thesaurusfunc'
+EXTERN char_u *p_tsrfu; // 'thesaurusfunc'
#endif
EXTERN int p_ci; // 'copyindent'
#if defined(FEAT_GUI) && defined(MACOS_X)
@@ -1222,7 +1222,7 @@ enum
, BV_TAGS
, BV_TC
#ifdef FEAT_COMPL_FUNC
- , BV_THSFU
+ , BV_TSRFU
#endif
, BV_TS
, BV_TW