diff --git a/src/ChangeLog b/src/ChangeLog index 9fec9151f..9de4a3c66 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-07-31 Roland Illig + + * view.c: Removed global variable have_fast_cpu. It is not used + anymore. + 2005-07-31 Roland Illig * user.c (execute_menu_command): Allow execution on no-exec diff --git a/src/setup.c b/src/setup.c index 61150f199..c585cab04 100644 --- a/src/setup.c +++ b/src/setup.c @@ -176,7 +176,6 @@ static const struct { { "old_esc_mode", &old_esc_mode }, { "cd_symlinks", &cd_symlinks }, { "show_all_if_ambiguous", &show_all_if_ambiguous }, - { "have_fast_cpu", &have_fast_cpu }, { "max_dirt_limit", &max_dirt_limit }, { "torben_fj_mode", &torben_fj_mode }, { "use_file_to_guess_type", &use_file_to_check_type }, diff --git a/src/view.c b/src/view.c index e99c8baf0..d38d5ac56 100644 --- a/src/view.c +++ b/src/view.c @@ -220,9 +220,6 @@ static enum { /* Scrolling is done in pages or line increments */ int mouse_move_pages_viewer = 1; -/* Used to compute the bottom first variable */ -int have_fast_cpu = 0; - /* wrap mode default */ int global_wrap_mode = 1; diff --git a/src/view.h b/src/view.h index 7fe053d83..6d07d4957 100644 --- a/src/view.h +++ b/src/view.h @@ -20,7 +20,6 @@ int view (const char *command, const char *file, int *ret_move_direction, extern int mouse_move_pages_viewer; extern int max_dirt_limit; extern int global_wrap_mode; -extern int have_fast_cpu; extern int default_hex_mode; extern int default_magic_flag; extern int default_nroff_flag;