A few typofixes.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Veres Lajos 2014-08-12 22:02:58 +01:00 committed by Andrew Borodin
parent 6d82155270
commit 8d4d8d275f
7 changed files with 9 additions and 9 deletions

View File

@ -32,7 +32,7 @@
* \author Jakub Jelinek
* \author Pavel Machek
* \date 1995, 1998
* \warning funtions like extfs_lstat() have right to destroy any
* \warning functions like extfs_lstat() have right to destroy any
* strings you pass to them. This is acutally ok as you g_strdup what
* you are passing to them, anyway; still, beware.
*

View File

@ -10,7 +10,7 @@
#
# -------------------------------
#
# Usefull links:
# Useful links:
# http://www.erlang.org/doc/doc-5.4.13/doc/reference_manual/part_frame.html
# http://www.erlang.org/doc/reference_manual/data_types.html#2.14
# http://www.regular-expressions.info/reference.html

View File

@ -704,7 +704,7 @@ setup_panels (void)
check_split (&panels_layout);
start_y = menubar_visible;
/* The column computing is defered until panel_do_cols */
/* The column computing is deferred until panel_do_cols */
if (panels_layout.horizontal_split)
{
widget_set_size (panels[0].widget, start_y, 0, panels_layout.top_panel_size, 0);

View File

@ -772,7 +772,7 @@ file_compute_color (int attr, file_entry_t * fe)
static filename_scroll_flag_t
format_file (char *dest, int limit, WPanel * panel, int file_index, int width, int attr,
gboolean isstatus, int *field_lenght)
gboolean isstatus, int *field_length)
{
int color, length = 0, empty_line;
format_e *format, *home;
@ -785,7 +785,7 @@ format_file (char *dest, int limit, WPanel * panel, int file_index, int width, i
empty_line = (file_index >= panel->dir.len);
home = isstatus ? panel->status_format : panel->format;
fe = &panel->dir.list[file_index];
*field_lenght = 0;
*field_length = 0;
if (!empty_line)
color = file_compute_color (attr, fe);
@ -815,7 +815,7 @@ format_file (char *dest, int limit, WPanel * panel, int file_index, int width, i
int str_len;
int i;
*field_lenght = len + 1;
*field_length = len + 1;
str_len = str_length (txt);
i = max (0, str_len - len);

View File

@ -170,7 +170,7 @@ int verbose = 1;
/*
* Whether the Midnight Commander tries to provide more
* information about copy/move sizes and bytes transfered
* information about copy/move sizes and bytes transferred
* at the expense of some speed
*/
int file_op_compute_totals = 1;

View File

@ -10,7 +10,7 @@ Remarks
-------
Due to different way of representing file entries on regular D64 disk images,
there could be issues with filenames that are transfered from/to the image.
there could be issues with filenames that are transferred from/to the image.
Following rules was applied to represent a single file entry:
1. An extension is attached to the end of a filename depending on a file type.

View File

@ -252,7 +252,7 @@ static const char *netrcp;
/* char *ftpfs_translate_path (struct ftpfs_connection *bucket, char *remote_path)
Translate a Unix path, i.e. MC's internal path representation (e.g.
/somedir/somefile) to a path valid for the remote server. Every path
transfered to the remote server has to be mangled by this function
transferred to the remote server has to be mangled by this function
right prior to sending it.
Currently only Amiga ftp servers are handled in a special manner.