summaryrefslogtreecommitdiff
path: root/src/spellsuggest.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-12 19:37:17 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-12 19:37:17 +0200
commita80faa8930ed5a554beeb2727762538873135e83 (patch)
treee797605e0c781214543fcba103cffede7af611cd /src/spellsuggest.c
parent82de464f763d6e6d89229be03ce7c6d02fd5fb59 (diff)
downloadvim-git-a80faa8930ed5a554beeb2727762538873135e83.tar.gz
patch 8.2.0559: clearing a struct is verbosev8.2.0559
Problem: Clearing a struct is verbose. Solution: Define and use CLEAR_FIELD() and CLEAR_POINTER().
Diffstat (limited to 'src/spellsuggest.c')
-rw-r--r--src/spellsuggest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spellsuggest.c b/src/spellsuggest.c
index b74d30ba3..c1ead7cce 100644
--- a/src/spellsuggest.c
+++ b/src/spellsuggest.c
@@ -760,7 +760,7 @@ spell_find_suggest(
langp_T *lp;
// Set the info in "*su".
- vim_memset(su, 0, sizeof(suginfo_T));
+ CLEAR_POINTER(su);
ga_init2(&su->su_ga, (int)sizeof(suggest_T), 10);
ga_init2(&su->su_sga, (int)sizeof(suggest_T), 10);
if (*badptr == NUL)
@@ -1266,7 +1266,7 @@ suggest_trie_walk(
// word).
depth = 0;
sp = &stack[0];
- vim_memset(sp, 0, sizeof(trystate_T));
+ CLEAR_POINTER(sp);
sp->ts_curi = 1;
if (soundfold)