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