diff --git a/src/ChangeLog b/src/ChangeLog index 819652a6b..c107f0321 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2002-09-13 Pavel Roskin + * 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. diff --git a/src/chmod.c b/src/chmod.c index dbedf7b23..7c29ca65f 100644 --- a/src/chmod.c +++ b/src/chmod.c @@ -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 (); -} - diff --git a/src/main.c b/src/main.c index 746a3a0fa..bb1830571 100644 --- a/src/main.c +++ b/src/main.c @@ -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; diff --git a/src/main.h b/src/main.h index 2978e9588..3dcfeae6b 100644 --- a/src/main.h +++ b/src/main.h @@ -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; diff --git a/src/setup.c b/src/setup.c index 530587371..5fbd1ba2b 100644 --- a/src/setup.c +++ b/src/setup.c @@ -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 },