home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / alt / lucidem / bug / 519 < prev    next >
Encoding:
Internet Message Format  |  1993-01-26  |  1.8 KB

  1. Path: sparky!uunet!munnari.oz.au!uniwa!toivo
  2. From: toivo@ucs.uwa.OZ.AU (Toivo Pedaste)
  3. Newsgroups: alt.lucid-emacs.bug
  4. Subject: Ultrix and lemacs19.4 (hanging)
  5. Date: 26 Jan 1993 07:33:20 GMT
  6. Organization: The University of Western Australia
  7. Lines: 40
  8. Message-ID: <1k2pg0INNeul@uniwa.uwa.edu.au>
  9. NNTP-Posting-Host: sage.ucs.uwa.edu.au
  10. X-Newsreader: NN version 6.4.19 #1
  11.  
  12. I have a couple of problems with lemacs hanging under ULTRIX 4.2a
  13.  
  14. 1)
  15.     lemacs hangs when I use emacsclient. This is a problem with
  16. reading from a remote process, for some reason it doesn't use a
  17. non-blocking read. This occured in 19.3 also and I got a fix
  18. off the net for it, but I've lost the old sources and I cann't
  19. remember what it was. Can anyone assist.
  20.  
  21. 2)
  22.     lemacs hanging on when pasteing in a selection from an
  23. xterm. This alse happened in 19.3, it didn't seem to happen to
  24. anyone else so it may be something peculiar about my X setup.
  25. Anyway if it does happen to anyone else  my solution was :
  26.  
  27. at line 1016 in xselect.c replace 
  28.  
  29.       result =
  30.     XGetWindowProperty (display, window, property,
  31.                 offset/4, buffer_size/4,
  32.                 (delete_p ? True : False),
  33.                 AnyPropertyType,
  34.                 actual_type_ret, actual_format_ret,
  35.                 actual_size_ret, &bytes_remaining, &tmp_data);
  36.  
  37. with
  38.  
  39.       result =
  40.     XGetWindowProperty (display, window, property,
  41.                 offset/4, buffer_size/4,
  42.                  False,
  43.                 AnyPropertyType,
  44.                 actual_type_ret, actual_format_ret,
  45.                 actual_size_ret, &bytes_remaining, &tmp_data);
  46.       if (delete_p) XDeleteProperty (display, window, property);
  47. --
  48. ------------------------------------------------------------------
  49.  Toivo Pedaste                        Email:  toivo@ucs.uwa.edu.au
  50.  University Computing Services,       Phone:  +61 9 380 2605
  51.  University of Western Australia      Fax:    +61 9 380 1014
  52.