mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
A few typofixes.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
6d82155270
commit
8d4d8d275f
@ -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.
|
||||
*
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user