From cfa5d9a5879f2aed28eab773bfc1ff29f7e38fe3 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Wed, 8 Jun 2022 01:46:30 +0300 Subject: [PATCH] Remove "lookbusy" command (^O-B) --- ccommand.c | 6 ------ funcs.c | 24 ------------------------ sue.h | 4 ---- 3 files changed, 34 deletions(-) diff --git a/ccommand.c b/ccommand.c index ad21ba3..688069b 100644 --- a/ccommand.c +++ b/ccommand.c @@ -502,12 +502,6 @@ o_key(void) tabset(); break; -#ifdef LOOKBUSY - case CNTRL_B: /* Don't ask */ - lookbusy(); - break; -#endif - case CNTRL_L: /* Repaint */ repaint(); break; diff --git a/funcs.c b/funcs.c index 2a804ca..bbbbc0f 100644 --- a/funcs.c +++ b/funcs.c @@ -72,30 +72,6 @@ onscrhlp(int signum) } } -#ifdef LOOKBUSY -/*-------------------------------------------------------------- - * Drivel - */ -void -lookbusy(void) -{ - wclear(editwin); - wpn("and the annual outlook for such a plan seems reasonably promising. \n"); - wpn("On the other hand, we will have to anticipate further adjustments \n"); - wpn("to the entire project if current trends continue for the rest of \n"); - wpn("the fiscal year. What must be taken into account is the continual \n"); - wpn("fluidity of the marketplace despite predictions of a coming period \n"); - wpn("of stabilization. While the firm has in the past dealt \n"); - wpn("effectively with market forces beyond its control, in the future \n"); - wpn("further attention must be paid to the possible side effects of \n"); - wpn("these forces.\n\n"); - wpn("Another aspect of the problem that must be taken into \n"); - wpn("consideration is the continual growth in significance of nonmarket "); - wrefresh(editwin); - waitkey(); /* Get key */ - disp_mode = dpage; /* Repaint text */ -} -#endif /* ---------------------------------------------------------- * Find text command. * Case-independent, forward text search. diff --git a/sue.h b/sue.h index 30c287f..336b4ba 100644 --- a/sue.h +++ b/sue.h @@ -342,10 +342,6 @@ void blockhlp(int signum); void quickhlp(int signum); void onscrhlp(int signum); -#ifdef LOOKBUSY -void lookbusy(void); -#endif - /* sue.c */ void edit_exit(int exparm); void edit_init(char *v_name); -- 2.45.2