From: Richard M. Stallman Date: Tue, 6 Dec 1994 08:49:33 +0000 (+0000) Subject: (calculate_costs): Set FRAME_COST_BAUD_RATE. X-Git-Tag: emacs-19.34~5734 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9f732a77fc995460909459aa1f26d7281037bd2b;p=emacs.git (calculate_costs): Set FRAME_COST_BAUD_RATE. Don't test dont_calculate_costs. (dont_calculate_costs): Variable deleted. (term_init): Don't set dont_calculate_costs. --- diff --git a/src/term.c b/src/term.c index bdb364ec691..aa9731d3faf 100644 --- a/src/term.c +++ b/src/term.c @@ -58,9 +58,6 @@ int memory_below_frame; /* Terminal remembers lines scrolled off bottom */ int fast_clear_end_of_line; /* Terminal has a `ce' string */ -int dont_calculate_costs; /* Nonzero means don't bother computing */ - /* various cost tables; we won't use them. */ - /* Nonzero means no need to redraw the entire frame on resuming a suspended Emacs. This is useful on terminals with multiple pages, where one page is used for Emacs and another for all else. */ @@ -1087,12 +1084,11 @@ extern do_line_insertion_deletion_costs (); calculate_costs (frame) FRAME_PTR frame; { - register char *f = TS_set_scroll_region ? - TS_set_scroll_region - : TS_set_scroll_region_1; + register char *f = (TS_set_scroll_region + ? TS_set_scroll_region + : TS_set_scroll_region_1); - if (dont_calculate_costs) - return; + FRAME_COST_BAUD_RATE (frame) = baud_rate; #ifdef HAVE_X_WINDOWS if (FRAME_X_P (frame)) @@ -1390,7 +1386,6 @@ term_init (terminal_type) initialize_win_nt_display (); Wcm_clear (); - dont_calculate_costs = 0; area = (char *) malloc (2044); @@ -1423,7 +1418,6 @@ term_init (terminal_type) #endif /* WINDOWSNT */ Wcm_clear (); - dont_calculate_costs = 0; status = tgetent (buffer, terminal_type); if (status < 0)