word               80 lib/widget/input_complete.c     char *word;
word              840 lib/widget/input_complete.c         state->p = strrchr (state->word, '`');
word              843 lib/widget/input_complete.c         state->q = strrchr (state->word, '$');
word              846 lib/widget/input_complete.c         if (str_is_char_escaped (state->word, state->q))
word              856 lib/widget/input_complete.c         state->r = strrchr (state->word, '@');
word              876 lib/widget/input_complete.c             completion_matches (state->word, command_completion_function,
word              884 lib/widget/input_complete.c         matches = completion_matches (state->word, filename_completion_function, state->flags);
word              886 lib/widget/input_complete.c         if (matches == NULL && state->is_cd && !IS_PATH_SEP (*state->word) && *state->word != '~')
word              919 lib/widget/input_complete.c                         state->r = mc_build_filename (cdpath, state->word, (char *) NULL);
word             1289 lib/widget/input_complete.c     state.word = g_strndup (text + *lc_start, *lc_end - *lc_start);
word             1310 lib/widget/input_complete.c             *lc_start += str_get_next_char (state.p) - state.word;
word             1319 lib/widget/input_complete.c             *lc_start += state.q - state.word;
word             1329 lib/widget/input_complete.c             *lc_start += state.r - state.word;
word             1334 lib/widget/input_complete.c     if (matches == NULL && *state.word == '~' && (state.flags & INPUT_COMPLETE_USERNAMES) != 0
word             1335 lib/widget/input_complete.c         && strchr (state.word, PATH_SEP) == NULL)
word             1338 lib/widget/input_complete.c         matches = completion_matches (state.word, username_completion_function, state.flags);
word             1354 lib/widget/input_complete.c     g_free (state.word);
word               81 src/editor/spell.c static int (*mc_aspell_speller_check) (AspellSpeller * ths, const char *word, int word_size);
word               83 src/editor/spell.c                                                            const char *word, int word_size);
word              100 src/editor/spell.c static int (*mc_aspell_speller_add_to_personal) (AspellSpeller * ths, const char *word,
word              322 src/editor/spell.c spell_dialog_spell_suggest_show (WEdit *edit, const char *word, char **new_word,
word              366 src/editor/spell.c     word_label = g_strdup_printf ("%s: %s", _("Misspelled"), word);
word              417 src/editor/spell.c aspell_add_to_dict (const char *word, int word_size)
word              419 src/editor/spell.c     mc_aspell_speller_add_to_personal (global_speller->speller, word, word_size);
word              449 src/editor/spell.c aspell_suggest (GPtrArray *suggest, const char *word, const int word_size)
word              453 src/editor/spell.c     if (word != NULL && global_speller != NULL && global_speller->speller != NULL)
word              457 src/editor/spell.c         wordlist = mc_aspell_speller_suggest (global_speller->speller, word, word_size);
word              492 src/editor/spell.c aspell_check (const char *word, const int word_size)
word              496 src/editor/spell.c     if (word != NULL && global_speller != NULL && global_speller->speller != NULL)
word              497 src/editor/spell.c         res = mc_aspell_speller_check (global_speller->speller, word, word_size);
word              406 src/help.c     help_print_word (WDialog *h, GString *word, int *col, int *line, gboolean add_space)
word              409 src/help.c             g_string_set_size (word, 0);
word              414 src/help.c             w = str_term_width1 (word->str);
word              422 src/help.c                 g_string_set_size (word, 0);
word              426 src/help.c                 tty_print_string (word->str);
word              427 src/help.c                 g_string_set_size (word, 0);
word              456 src/help.c         GString *word;
word              458 src/help.c         word = g_string_sized_new (32);
word              511 src/help.c                     help_print_word (h, word, &col, &line, FALSE);
word              533 src/help.c                     help_print_word (h, word, &col, &line, FALSE);
word              538 src/help.c                         help_print_word (h, word, &col, &line, FALSE);
word              547 src/help.c                         help_print_word (h, word, &col, &line, c == ' ');
word              564 src/help.c                             g_string_append (word, buff);
word              586 src/help.c                 help_print_word (h, word, &col, &line, FALSE);
word              604 src/help.c         g_string_free (word, TRUE);