home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!munnari.oz.au!uniwa!toivo
- From: toivo@ucs.uwa.OZ.AU (Toivo Pedaste)
- Newsgroups: alt.lucid-emacs.bug
- Subject: Ultrix and lemacs19.4 (hanging)
- Date: 26 Jan 1993 07:33:20 GMT
- Organization: The University of Western Australia
- Lines: 40
- Message-ID: <1k2pg0INNeul@uniwa.uwa.edu.au>
- NNTP-Posting-Host: sage.ucs.uwa.edu.au
- X-Newsreader: NN version 6.4.19 #1
-
- I have a couple of problems with lemacs hanging under ULTRIX 4.2a
-
- 1)
- lemacs hangs when I use emacsclient. This is a problem with
- reading from a remote process, for some reason it doesn't use a
- non-blocking read. This occured in 19.3 also and I got a fix
- off the net for it, but I've lost the old sources and I cann't
- remember what it was. Can anyone assist.
-
- 2)
- lemacs hanging on when pasteing in a selection from an
- xterm. This alse happened in 19.3, it didn't seem to happen to
- anyone else so it may be something peculiar about my X setup.
- Anyway if it does happen to anyone else my solution was :
-
- at line 1016 in xselect.c replace
-
- result =
- XGetWindowProperty (display, window, property,
- offset/4, buffer_size/4,
- (delete_p ? True : False),
- AnyPropertyType,
- actual_type_ret, actual_format_ret,
- actual_size_ret, &bytes_remaining, &tmp_data);
-
- with
-
- result =
- XGetWindowProperty (display, window, property,
- offset/4, buffer_size/4,
- False,
- AnyPropertyType,
- actual_type_ret, actual_format_ret,
- actual_size_ret, &bytes_remaining, &tmp_data);
- if (delete_p) XDeleteProperty (display, window, property);
- --
- ------------------------------------------------------------------
- Toivo Pedaste Email: toivo@ucs.uwa.edu.au
- University Computing Services, Phone: +61 9 380 2605
- University of Western Australia Fax: +61 9 380 1014
-