home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / gnu / emacs / help / 5307 < prev    next >
Encoding:
Text File  |  1993-01-08  |  1.6 KB  |  48 lines

  1. Path: sparky!uunet!ferkel.ucsb.edu!ucsbcsl!ucsbuxa!6500axel
  2. From: 6500axel@ucsbuxa.ucsb.edu (Axel Boldt)
  3. Newsgroups: gnu.emacs.help
  4. Subject: Re: webster with emacs 18.59 ?
  5. Message-ID: <7305@ucsbcsl.ucsb.edu>
  6. Date: 9 Jan 93 03:08:28 GMT
  7. References: <7233@ucsbcsl.ucsb.edu>
  8. Sender: root@ucsbcsl.ucsb.edu
  9. Reply-To: 6500axel@ucsbuxa.ucsb.edu
  10. Organization: Univ of California, Santa Barbara, Dept of Mathematics
  11. Lines: 35
  12.  
  13. 6500axel@ucsbuxa.ucsb.edu (Axel Boldt) writes:
  14.  
  15.  
  16. >Has someone running webster.el (version last changed 4/15/92) with
  17. >emacs 18.59? I always get 'Attempting to connect to server ...' and
  18. >then 'Process webster not running'. This error message is generated by
  19. >the line 
  20. >  (process-send-string  webster-process webster-command)
  21. >in webster-send-request; I suspect that the problem lies in the
  22. >command make-shell a few lines earlier. Did the definition of
  23. >make-shell change in the new emacs release? Why is make-shell nowhere
  24. >documented? 
  25.  
  26. Well, I found a solution to the problem with webster, but I don't know
  27. whether it is clean, safe or whatever. Anyway:
  28.  
  29. I changed the following lines in webster-send-request
  30.  
  31. <       (setq webster-buffer
  32. <         (if (not (fboundp 'make-shell)) ;emacs19
  33. <             (make-comint webster-process-name "telnet")
  34. <           (make-shell webster-process-name "telnet")))
  35.  
  36. to
  37.  
  38. > ;      (setq webster-buffer
  39. > ;        (if (not (fboundp 'make-shell)) ;emacs19
  40. > ;            (make-comint webster-process-name "telnet")
  41. > ;          (make-shell webster-process-name "telnet")))
  42. >         (setq webster-buffer (generate-new-buffer "webster"))
  43. >         (start-process webster-process-name webster-buffer "telnet")
  44.  
  45. Seems to work.
  46.  
  47. Axel.
  48.