diff --git a/ChangeLog b/ChangeLog index c63d512..5c1e817 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3260,3 +3260,8 @@ Wed Mar 1 18:37:18 PST 2000 Michael Jennings the parsing of escape sequences a little better. ------------------------------------------------------------------------------- +Thu Mar 2 09:47:30 PST 2000 Michael Jennings + + Right. How the hell did I miss that?! Thanks again Valdis. + +------------------------------------------------------------------------------- diff --git a/configure.in b/configure.in index 0436d47..5f9e066 100644 --- a/configure.in +++ b/configure.in @@ -133,7 +133,7 @@ AC_CHECK_HEADERS(fcntl.h termios.h \ sys/ioctl.h sys/select.h sys/time.h \ sys/sockio.h sys/byteorder.h \ utmpx.h unistd.h bsd/signal.h regex.h \ -regexp.h stdarg.h) +regexp.h stdarg.h X11/Xmu/Atoms.h) AC_HEADER_TIME dnl# Missing typedefs and replacements @@ -144,7 +144,7 @@ AC_TYPE_UID_T dnl# Checks for library functions. AC_TYPE_SIGNAL -AC_CHECK_FUNCS(atexit _exit unsetenv setutent seteuid memmove putenv strsep setresuid setresgid memmem usleep snprintf X11/Xmu/Atoms.h) +AC_CHECK_FUNCS(atexit _exit unsetenv setutent seteuid memmove putenv strsep setresuid setresgid memmem usleep snprintf) dps_snprintf_oflow() dnl# Check for the need for -lutil on BSD systems diff --git a/src/screen.c b/src/screen.c index 8a8d2a4..6a2cbcb 100644 --- a/src/screen.c +++ b/src/screen.c @@ -2395,8 +2395,8 @@ selection_paste(Window win, unsigned prop, int Delete) if (actual_type == XA_STRING) { PasteIt(data, nitems); } else { - int size, i, ret; - XTextProperty xtextp; + int size, i; + XTextProperty xtextp; char **cl; xtextp.value = data;