home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / lang / lisp / mcl / 1345 < prev    next >
Encoding:
Internet Message Format  |  1992-08-31  |  1.2 KB

  1. Path: sparky!uunet!news.uiowa.edu!hobbes.physics.uiowa.edu!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!ames!data.nas.nasa.gov!taligent!apple!cambridge.apple.com!bill@cambridge.apple.com
  2. From: bill@cambridge.apple.com (Bill St. Clair)
  3. Newsgroups: comp.lang.lisp.mcl
  4. Subject: Re: Lisp Listener hidden
  5. Message-ID: <9208311552.AA14332@cambridge.apple.com>
  6. Date: 31 Aug 92 16:57:11 GMT
  7. Sender: info-mcl-request@cambridge.apple.com
  8. Lines: 20
  9. Approved: comp.lang.lisp.mcl@Cambridge.Apple.C0M
  10. Full-Name: Bill St. Clair
  11. Original-To: jipan@gmuvax2.gmu.edu (Jiqian Pan)
  12. Original-Cc: info-mcl
  13.  
  14. >Does anyone know how the Lisp Listener is hidden while a MCL
  15. >application runs?  It seems to me the MCL does not provide
  16. >the function for the Lisp Listener.  Is that right?  Thanks.
  17. >
  18. >-JP
  19.  
  20. The listener is created whenever input or output is done on the default
  21. value of the following streams:
  22.  
  23. *terminal-io*
  24. *debug-io*
  25. *query-io*
  26. *standard-output*
  27. *standard-input*
  28. *error-output*
  29. *trace-output*
  30.  
  31. The function BINHEX-TOPLEVEL in the file "ccl:examples;binhex;binhex.lisp"
  32. illustrates binding *terminal-io*, *debug-io*, and *standard-output* to
  33. a bit bucket stream to prevent the appearance of the listener.
  34.