How to run lisp?

1. copy the init files of lisp from course directory:

  ~nlp992/.lisprc
  ~nlp992/.lisprc-acl
  ~nlp992/.clinit.cl
  ~nlp992/.fuf.el

Load .fuf.el from your .emacs file - you do it by:

(load-file "~/.fuf.el")
To run lisp type:
alt-x run-lisp
To load FUF do
alt-x load-system  fug5

Also, copy auxfns.l auxmacs.l files from ~nlp992/code directory and load them when your run lisp.

(you can add the load in .clinit)

I'll put in that directory the source codes you'll need.

To run lisp from your shell type "cl"

Note: add this line to the clinit.cl before loading auxfns.lisp:

(setf *enable-package-locked-errors* nil)

If there is smth that does not work, please let me know.

Yael

Back to the course page