From 2d8721c74504ed3e5c9d2ecef93f7e210cb42f0a Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Sat, 16 Apr 2005 18:56:58 +0000 Subject: [PATCH] * view.c (display): Removed the call to the empty macros view_freeze() and view_thaw(). Deleted these macros, as they are otherwise unused. --- src/ChangeLog | 3 +++ src/view.c | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index ae9a5263f..ec280ca2f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -18,6 +18,9 @@ expansion. They looked like variables, which was irritating. * view.c (view_get_datacolumns): Added. Replaced equivalent expressions to call this function. + * view.c (display): Removed the call to the empty macros + view_freeze() and view_thaw(). Deleted these macros, as they + are otherwise unused. 2005-04-14 Roland Illig diff --git a/src/view.c b/src/view.c index e8d879e37..6f9021f28 100644 --- a/src/view.c +++ b/src/view.c @@ -793,9 +793,6 @@ view_display_clean (WView *view, int height, int width) #define view_add_string(view,s) addstr (s) #define view_gotoyx(v,r,c) widget_move (v,r,c) -#define view_freeze(view) -#define view_thaw(view) - typedef enum { MARK_NORMAL = 0, MARK_SELECTED = 1, @@ -831,7 +828,6 @@ display (WView *view) from = view->dpy_text_start; attrset (NORMAL_COLOR); - view_freeze (view); view_display_clean (view, height, width); /* Optionally, display a ruler */ @@ -1071,7 +1067,6 @@ display (WView *view) } } view->last = from; - view_thaw (view); return from; }