mirror of
https://github.com/MidnightCommander/mc
synced 2025-03-12 10:53:23 +03:00
Fix typos.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
b457921fda
commit
70fa973f47
@ -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)
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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 */
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user