*** HTML.c.orig	Mon Jul 22 21:18:09 1996
--- HTML.c	Mon Jul 22 21:22:03 1996
***************
*** 949,954 ****
  
  
- #define MAX_Y_EXP_DIFF 10 /*pixels between exposes to make one expose area*/
- 
  /*
   * Process an expose event in the View (or drawing area).  This 
--- 949,952 ----
***************
*** 1055,1089 ****
  			}
  
- 			if (width==(-666) && height==(-666)) {
- 				x = nx;
- 				y = ny;
- 				width = nwidth;
- 				height = nheight;
- 
- 				continue;
- 			}
- 
  			x1 = x + width;
  			y1 = y + height;
- 
- 			/* The following block makes sure the exposure area is not
- 			   incredibly HUGE...like one widget at the top and another
- 			   at the bottom causing the whole page to be drawn over and
- 			   over. --SWP */
- 			if ((y>(ny+nheight) &&
- 			     (y-(ny+nheight))>MAX_Y_EXP_DIFF) ||
- 			    (y1<ny &&
- 			     (ny-y1)>MAX_Y_EXP_DIFF)) {
- #ifndef DISABLE_TRACE
- 				if (htmlwTrace) {
- 					DebugHook(x, y, width, height);
- 				}
- #endif
- 
- 				ViewRedisplay(hw, x, y, width, height);
- 				width=height=(-666);
- 
- 				continue;
- 			}
  
  			if (x > nx) {
--- 1053,1058 ----
