Doh. I broke Imlib2-based builds. =P

SVN revision: 2591
This commit is contained in:
Michael Jennings 2000-05-02 23:53:27 +00:00
parent 4bb04764b3
commit 8d2b2125c3
3 changed files with 12 additions and 18 deletions

1
src/.indent.pro vendored Normal file
View File

@ -0,0 +1 @@
-bap -bbo -br -brs -ce -ci4 -cli2 -cs -di1 -hnl -i2 -l140 -lp -lps -nbc -npcs -nss -nsob -pmt -psl -ts 999

View File

@ -1596,6 +1596,9 @@ scr_refresh(int type)
Pixmap pmap = images[image_bg].current->pmap->pixmap;
int (*draw_string) (), (*draw_image_string) ();
register int low_x = 99999, low_y = 99999, high_x = 0, high_y = 0;
#ifdef PIXMAP_SUPPORT
Drawable draw_buffer;
#endif
#ifndef NO_BOLDFONT
int bfont = 0; /* we've changed font to bold font */
#endif
@ -1603,15 +1606,6 @@ scr_refresh(int type)
register int nrows = TermWin.nrow;
register int ncols = TermWin.ncol;
#endif
#ifdef PIXMAP_SUPPORT
Drawable draw_buffer;
if (buffer_pixmap) {
draw_buffer = buffer_pixmap;
} else {
draw_buffer = TermWin.vt;
}
#endif
PROF_INIT(scr_refresh);
@ -1629,6 +1623,14 @@ scr_refresh(int type)
if (type == NO_REFRESH)
return;
#ifdef PIXMAP_SUPPORT
if (buffer_pixmap) {
draw_buffer = buffer_pixmap;
} else {
draw_buffer = TermWin.vt;
}
#endif
row_offset = TermWin.saveLines - TermWin.view_start;
fprop = TermWin.fprop;

View File

@ -42,17 +42,8 @@ static const char cvs_ident[] = "$Id$";
#include "misc.h"
#include "system.h"
static RETSIGTYPE dummy_handler(int);
static sighandler_t old_handler = (sighandler_t) NULL;
static RETSIGTYPE
dummy_handler(int sig)
{
signal(SIGCHLD, old_handler);
SIG_RETURN(0);
}
int
wait_for_chld(int system_pid)
{