home *** CD-ROM | disk | FTP | other *** search
Lisp/Scheme | 1993-09-15 | 782 b | 20 lines | [TEXT/ttxt] |
- ; When xlisp launches, it looks for a file named "init.lsp" in the
- ; same folder, and executes everything in it if it finds one.
-
- (print "You can modify init.lsp to run things on startup.")
- (print "Be sure to read the release notes!")
-
- (defun strcat (&rest str) ; backwards compatibility (you should use concatenate)
- (apply #'concatenate 'string str))
-
- (setq *features* (list :xlisp))
- ; Differences in various implementations, needed by some example programs.
- (when (fboundp 'get-internal-run-time)
- (setq *features* (cons :times *features*)))
- (when (fboundp 'generic)
- (setq *features* (cons :generic *features*)))
- (when (fboundp 'find-if)
- (setq *features* (cons :posfcns *features*)))
- (when (fboundp 'log)
- (setq *features* (cons :math *features*)))
-