Fix typos.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2015-10-25 07:40:34 +03:00 committed by Slava Zanko
parent b457921fda
commit 70fa973f47
7 changed files with 7 additions and 7 deletions

View File

@ -162,7 +162,7 @@ history_get (const char *input_name)
/* --------------------------------------------------------------------------------------------- */
/**
* Load history form the mc_config
* Load history from the mc_config
*/
GList *
history_load (struct mc_config_t * cfg, const char *name)

View File

@ -23,7 +23,7 @@ extern int num_history_items_recorded;
/* read history to the mc_config, but don't save config to file */
GList *history_get (const char *input_name);
/* load history form the mc_config */
/* load history from the mc_config */
GList *history_load (struct mc_config_t *cfg, const char *name);
/* save history to the mc_config, but don't save config to file */
void history_save (struct mc_config_t *cfg, const char *name, GList * h);

View File

@ -597,7 +597,7 @@ status_msg_init (status_msg_t * sm, const char *title, double delay, status_msg_
if (mc_time_elapsed (&start, sm->delay))
{
/* We will manage the dialog without any help, that's why we have to call init_dlg */
/* We will manage the dialog without any help, that's why we have to call dlg_init */
dlg_init (sm->dlg);
}
}

View File

@ -48,7 +48,7 @@ struct status_msg_t
status_msg_cb init; /* callback to init derived classes */
status_msg_update_cb update; /* callback to update dlg */
status_msg_cb deinit; /* callback to deinit deribed clesses */
status_msg_cb deinit; /* callback to deinit derived classes */
};
/* Simple status message with label and 'Abort' button */

View File

@ -54,7 +54,7 @@ gboolean mc_args__nomouse = FALSE;
/* Force colors, only used by Slang */
gboolean mc_args__force_colors = FALSE;
/* Don't load keymap form file and use default one */
/* Don't load keymap from file and use default one */
gboolean mc_args__nokeymap = FALSE;
char *mc_args__last_wd_file = NULL;

View File

@ -297,7 +297,7 @@ mcview_load (WView * view, const char *command, const char *file, int start_line
}
else
{
/* try extract path form filename */
/* try extract path from filename */
const char *fname;
char *dir;

View File

@ -370,7 +370,7 @@ mcview_do_search (WView * view, off_t want_search_start)
if (!isFound && view->search->error_str != NULL)
{
/* continue search form beginning */
/* continue search from beginning */
off_t search_end;
search_end = orig_search_start;