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

  1. Path: sparky!uunet!sun-barr!ames!data.nas.nasa.gov!taligent!apple!cambridge.apple.com!@explorer.dgp.toronto.edu:markt@dgp.toronto.edu
  2. From: markt@dgp.toronto.edu ("Mark A. Tapia")
  3. Newsgroups: comp.lang.lisp.mcl
  4. Subject: Re:  problem with my first trap
  5. Message-ID: <92Sep3.180646edt.144068@explorer.dgp.toronto.edu>
  6. Date: 3 Sep 92 22:06:32 GMT
  7. Sender: info-mcl-request@cambridge.apple.com
  8. Lines: 26
  9. Approved: comp.lang.lisp.mcl@Cambridge.Apple.C0M
  10. Original-To: beus@bunsen.cs.byu.edu
  11. Original-Cc: info-mcl@cambridge.apple.com
  12.  
  13. beus@bunsen.cs.byu.edu writes:
  14.     
  15.     Trying a simple use of a Mac trap gives this error.
  16.     Can anyone help?
  17.      
  18.      ? (#_sysbeep 1)
  19.      > Error: Can't find TRAPS::_SYSBEEP in "ccl:interfaces;index;traps.idx".
  20.      >        Consider (REINDEX-INTERFACES) or look in "ccl:library;interfaces.lisp"
  21.      > While executing: CCL::FIND-INTERFACE-ENTRY
  22.      > Type Command-/ to continue, Command-. to abort.
  23.      > If continued: Ignore the error.
  24.      See the Restarts  menu item for further choices.
  25.       
  26. Explanation:
  27. You don't say which version that you are using. If you're using MCL2.0b1p3
  28. or earlier, you'll need to specify (ccl::reindex-interfaces) otherwise
  29. specify (reindex-interfaces). The system is telling you that the index files
  30. (files ending in .idx in the library/interfaces/index folder)
  31. are not compatible with the source files describing the interfaces to
  32. the traps (in the library/interfaces folder).
  33.  
  34. The traps are automatically loaded in MCL2.0 final.
  35.  
  36. To free up the memory, you can exit from lisp after reindexing the interfaces
  37. which takes several minutes and then you can restart Lisp. The traps should
  38. work properly.
  39.