diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-05-08 15:03:25 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-17 07:02:44 -0300 |
commit | 5209d2271b5e66ea3da0fc9056f99b8cafc14aa6 (patch) | |
tree | 3202016b0c15f7c14561bfaa25d8109057df6c97 /src/nvim/spell.c | |
parent | b4efff652388260b548324f870201a5804e097f0 (diff) | |
download | rneovim-5209d2271b5e66ea3da0fc9056f99b8cafc14aa6.tar.gz rneovim-5209d2271b5e66ea3da0fc9056f99b8cafc14aa6.tar.bz2 rneovim-5209d2271b5e66ea3da0fc9056f99b8cafc14aa6.zip |
Replace ga->ga_len == 0 checks with GA_EMPTY(ga)
Used Coccinelle to perform the changes
@@
expression E;
@@
<...
(
// E.ga_len == 0 is isomorphic to !E.ga_len
- E.ga_len == 0
+ GA_EMPTY(&E)
|
- E->ga_len == 0
+ GA_EMPTY(E)
)
...>
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r-- | src/nvim/spell.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 659ea65ac2..0f35681546 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -997,7 +997,7 @@ spell_check ( return 1; // Return here when loading language files failed. - if (wp->w_s->b_langp.ga_len == 0) + if (GA_EMPTY(&wp->w_s->b_langp)) return 1; memset(&mi, 0, sizeof(matchinf_T)); @@ -1947,7 +1947,7 @@ spell_valid_case ( static int no_spell_checking(win_T *wp) { if (!wp->w_p_spell || *wp->w_s->b_p_spl == NUL - || wp->w_s->b_langp.ga_len == 0) { + || GA_EMPTY(&wp->w_s->b_langp)) { EMSG(_("E756: Spell checking is not enabled")); return TRUE; } @@ -4557,16 +4557,16 @@ static afffile_T *spell_read_aff(spellinfo_T *spin, char_u *fname) spell_message(spin, IObuff); // Only do REP lines when not done in another .aff file already. - do_rep = spin->si_rep.ga_len == 0; + do_rep = GA_EMPTY(&spin->si_rep); // Only do REPSAL lines when not done in another .aff file already. - do_repsal = spin->si_repsal.ga_len == 0; + do_repsal = GA_EMPTY(&spin->si_repsal); // Only do SAL lines when not done in another .aff file already. - do_sal = spin->si_sal.ga_len == 0; + do_sal = GA_EMPTY(&spin->si_sal); // Only do MAP lines when not done in another .aff file already. - do_mapline = spin->si_map.ga_len == 0; + do_mapline = GA_EMPTY(&spin->si_map); // Allocate and init the afffile_T structure. aff = (afffile_T *)getroom(spin, sizeof(afffile_T), TRUE); @@ -6938,7 +6938,7 @@ static int write_vim_spell(spellinfo_T *spin, char_u *fname) gap = &spin->si_repsal; // Don't write the section if there are no items. - if (gap->ga_len == 0) + if (GA_EMPTY(gap)) continue; // Sort the REP/REPSAL items. @@ -8691,7 +8691,7 @@ void spell_suggest(int count) spell_find_suggest(line + curwin->w_cursor.col, badlen, &sug, limit, TRUE, need_cap, TRUE); - if (sug.su_ga.ga_len == 0) + if (GA_EMPTY(&sug.su_ga)) MSG(_("Sorry, no suggestions")); else if (count > 0) { if (count > sug.su_ga.ga_len) @@ -11680,7 +11680,7 @@ add_suggestion ( // the first "the" to itself. return; - if (gap->ga_len == 0) + if (GA_EMPTY(gap)) i = -1; else { // Check if the word is already there. Also check the length that is |