1
1

* main.c: Remove advanced_chfns variable. Adjust all

dependencies.
Этот коммит содержится в:
Pavel Roskin 2002-09-13 16:33:18 +00:00
родитель c740e77171
Коммит eeea579c19
5 изменённых файлов: 3 добавлений и 21 удалений

Просмотреть файл

@ -1,5 +1,8 @@
2002-09-13 Pavel Roskin <proski@gnu.org>
* main.c: Remove advanced_chfns variable. Adjust all
dependencies.
* option.c: Make "Configure options" dialog more flexible,
readjust layout. Remove "advanced chown" option - it's unused.

Просмотреть файл

@ -381,19 +381,3 @@ void chmod_cmd (void)
chmod_done ();
}
void ch1_cmd (int id)
{
if (advanced_chfns)
chown_advanced_cmd ();
else
chmod_cmd ();
}
void ch2_cmd (int id)
{
if (advanced_chfns)
chown_advanced_cmd ();
else
chown_cmd ();
}

Просмотреть файл

@ -117,9 +117,6 @@ WMenu *the_menubar;
/* Pointers to the selected and unselected panel */
WPanel *current_panel = NULL;
/* Set when we want use advanced chmod command instead of chmod and/or chown */
int advanced_chfns = 0;
/* Set when main loop should be terminated */
volatile int quit = 0;

Просмотреть файл

@ -61,7 +61,6 @@ extern int confirm_view_dir;
extern int fast_refresh;
extern int navigate_with_arrows;
extern int force_ugly_line_drawing;
extern int advanced_chfns;
extern int drop_menus;
extern int cd_symlinks;
extern int show_all_if_ambiguous;

Просмотреть файл

@ -177,7 +177,6 @@ static const struct {
{ "mouse_move_pages_viewer", &mouse_move_pages_viewer },
{ "fast_refresh", &fast_refresh },
{ "navigate_with_arrows", &navigate_with_arrows },
{ "advanced_chown", &advanced_chfns },
{ "drop_menus", &drop_menus },
{ "wrap_mode", &global_wrap_mode},
{ "old_esc_mode", &old_esc_mode },