word               82 lib/widget/input_complete.c     char *word;
word              881 lib/widget/input_complete.c         state->p = strrchr (state->word, '`');
word              884 lib/widget/input_complete.c         state->q = strrchr (state->word, '$');
word              887 lib/widget/input_complete.c         if (strutils_is_char_escaped (state->word, state->q))
word              897 lib/widget/input_complete.c         state->r = strrchr (state->word, '@');
word              917 lib/widget/input_complete.c             completion_matches (state->word, command_completion_function,
word              925 lib/widget/input_complete.c         matches = completion_matches (state->word, filename_completion_function, state->flags);
word              927 lib/widget/input_complete.c         if (matches == NULL && state->is_cd && !IS_PATH_SEP (*state->word) && *state->word != '~')
word              960 lib/widget/input_complete.c                         state->r = mc_build_filename (cdpath, state->word, (char *) NULL);
word             1322 lib/widget/input_complete.c     state.word = g_strndup (text + *lc_start, *lc_end - *lc_start);
word             1343 lib/widget/input_complete.c             *lc_start += str_get_next_char (state.p) - state.word;
word             1352 lib/widget/input_complete.c             *lc_start += state.q - state.word;
word             1362 lib/widget/input_complete.c             *lc_start += state.r - state.word;
word             1367 lib/widget/input_complete.c     if (matches == NULL && *state.word == '~' && (state.flags & INPUT_COMPLETE_USERNAMES) != 0
word             1368 lib/widget/input_complete.c         && strchr (state.word, PATH_SEP) == NULL)
word             1371 lib/widget/input_complete.c         matches = completion_matches (state.word, username_completion_function, state.flags);
word             1387 lib/widget/input_complete.c     g_free (state.word);
word               78 src/editor/spell.c static int (*mc_aspell_speller_check) (AspellSpeller * ths, const char *word, int word_size);
word               80 src/editor/spell.c                                                            const char *word, int word_size);
word               97 src/editor/spell.c static int (*mc_aspell_speller_add_to_personal) (AspellSpeller * ths, const char *word,
word              476 src/editor/spell.c aspell_check (const char *word, const int word_size)
word              480 src/editor/spell.c     if (word != NULL && global_speller != NULL && global_speller->speller != NULL)
word              481 src/editor/spell.c         res = mc_aspell_speller_check (global_speller->speller, word, word_size);
word              497 src/editor/spell.c aspell_suggest (GPtrArray * suggest, const char *word, const int word_size)
word              501 src/editor/spell.c     if (word != NULL && global_speller != NULL && global_speller->speller != NULL)
word              505 src/editor/spell.c         wordlist = mc_aspell_speller_suggest (global_speller->speller, word, word_size);
word              539 src/editor/spell.c aspell_add_to_dict (const char *word, int word_size)
word              541 src/editor/spell.c     mc_aspell_speller_add_to_personal (global_speller->speller, word, word_size);
word              712 src/editor/spell.c spell_dialog_spell_suggest_show (WEdit * edit, const char *word, char **new_word,
word              757 src/editor/spell.c     word_label = g_strdup_printf ("%s: %s", _("Misspelled"), word);
word               18 src/editor/spell.h gboolean aspell_check (const char *word, const int word_size);
word               19 src/editor/spell.h unsigned int aspell_suggest (GPtrArray * suggest, const char *word, const int word_size);
word               24 src/editor/spell.h gboolean aspell_add_to_dict (const char *word, const int word_size);
word               30 src/editor/spell.h int spell_dialog_spell_suggest_show (WEdit * edit, const char *word, char **new_word,
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);