summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Warner <james.warner@comcast.net>2013-08-15 00:00:00 -0500
committerCraig Small <csmall@enc.com.au>2013-08-30 22:08:25 +1000
commit80e678343653ccadaaf66bf719b3da9d6168d9ec (patch)
treecf6e052b9ecc660de2ac7b3c6d68a5571368afe0
parent739effd90701d5d327624cd833d20c7f35981613 (diff)
downloadprocps-ng-80e678343653ccadaaf66bf719b3da9d6168d9ec.tar.gz
top: modest efficiency change to message line handling
When the final solution for cursor positioning for all ^Z or ^C cases was introduced the revised placement of message line management introduced with the window mgr 'screen' refactor was retained. Those two commits mean that a former tgoto was no longer needed when clearing that msg line or displaying the scroll coordinate msg. This patch eliminates the tgoto employed by frame_make while assimilating a now defunct show_scroll function. Reference(s): . final cursor positioning for ^Z or ^C commit 46a1356219cfab67240704af9cd73b58a20d4232 . 'screen' window manager refactor commit 0fe393ff270922cd4f6edbcaabba006314e73a37 Signed-off-by: Jim Warner <james.warner@comcast.net>
-rw-r--r--top/top.c22
-rw-r--r--top/top.h1
2 files changed, 10 insertions, 13 deletions
diff --git a/top/top.c b/top/top.c
index e2451f5..c29bb07 100644
--- a/top/top.c
+++ b/top/top.c
@@ -751,13 +751,6 @@ static int show_pmt (const char *str) {
/*
- * Show a special coordinate message, in support of scrolling */
-static inline void show_scroll (void) {
- PUTT(Scroll_fmts, tg2(0, Msg_row), Frame_maxtask);
-} // end: show_scroll
-
-
- /*
* Show lines with specially formatted elements, but only output
* what will fit within the current screen width.
* Our special formatting consists of:
@@ -857,7 +850,7 @@ static void show_special (int interact, const char *glob) {
/*
* Create a nearly complete scroll coordinates message, but still
- * a format string since we'll be missing a tgoto and total tasks. */
+ * a format string since we'll be missing the current total tasks. */
static void updt_scroll_msg (void) {
char tmp1[SMLBUFSIZ], tmp2[SMLBUFSIZ];
int totpflgs = Curwin->totpflgs;
@@ -878,8 +871,10 @@ static void updt_scroll_msg (void) {
if (Curwin->varcolbeg)
snprintf(tmp2, sizeof(tmp2), "%s + %d", tmp1, Curwin->varcolbeg);
#endif
+ // this Scroll_fmts string no longer provides for termcap tgoto so that
+ // the usage timing is critical -- see frame_make() for additional info
snprintf(Scroll_fmts, sizeof(Scroll_fmts)
- , "%%s%s %.*s%s", Caps_off, Screen_cols - 3, tmp2, Cap_clr_eol);
+ , "%s %.*s%s", Caps_off, Screen_cols - 3, tmp2, Cap_clr_eol);
} // end: updt_scroll_msg
/*###### Low Level Memory/Keyboard/File I/O support ####################*/
@@ -5477,9 +5472,12 @@ static void frame_make (void) {
Max_lines = (Screen_rows - Msg_row) - 1;
OFFw(w, INFINDS_xxx);
- // one way or another, rid us of any prior frame's msg
- if (VIZISw(w) && CHKw(w, View_SCROLL)) show_scroll();
- else PUTT("%s%s", tg2(0, Msg_row), Cap_clr_eol);
+ /* one way or another, rid us of any prior frame's msg
+ [ now that this is positioned after the call to summary_show(), ]
+ [ we no longer need or employ tg2(0, Msg_row) since all summary ]
+ [ lines end with a newline, and header lines begin with newline ] */
+ if (VIZISw(w) && CHKw(w, View_SCROLL)) PUTT(Scroll_fmts, Frame_maxtask);
+ else putp(Cap_clr_eol);
if (!Rc.mode_altscr) {
// only 1 window to show so, piece o' cake
diff --git a/top/top.h b/top/top.h
index 43d1ebc..017644f 100644
--- a/top/top.h
+++ b/top/top.h
@@ -658,7 +658,6 @@ typedef struct WIN_t {
//atic void capsmk (WIN_t *q);
//atic void show_msg (const char *str);
//atic int show_pmt (const char *str);
-//atic inline void show_scroll (void);
//atic void show_special (int interact, const char *glob);
//atic void updt_scroll_msg (void);
/*------ Low Level Memory/Keyboard/File I/O support --------------------*/