* view.c: Removed global variable have_fast_cpu. It is not used

anymore.
This commit is contained in:
Roland Illig 2005-07-31 20:16:12 +00:00
parent 1b18865579
commit ca0d773797
4 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2005-07-31 Roland Illig <roland.illig@gmx.de>
* view.c: Removed global variable have_fast_cpu. It is not used
anymore.
2005-07-31 Roland Illig <roland.illig@gmx.de>
* user.c (execute_menu_command): Allow execution on no-exec

View File

@ -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 },

View File

@ -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;

View File

@ -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;