[Openmcl-devel] Installation of ILisp
Sven Van Caekenberghe
sven at beta9.be
Sun Nov 17 12:20:03 PST 2002
Olivier,
I am using OpenMCL 0.13.1 with Emacs 21.3.50.1 and ILisp 5.12.0 on Mac
OS X 10.2.2.
This is my .emacs file:
;; .emacs file (sven at beta9.be)
(global-font-lock-mode t)
(setq show-paren-mode t)
;; ilisp setup
(setq load-path
(cons (expand-file-name "~/apps/ilisp-5.12.0")
load-path))
(autoload 'run-ilisp
"ilisp"
"Select a new inferior Lisp."
t)
(autoload 'openmcl
"ilisp"
"Select a new OpenMCL inferior Lisp."
t)
(setq openmcl-program "/Users/sven/apps/ccl/scripts/openmcl")
(set-default 'auto-mode-alist
(append '(("\\.lisp$" . lisp-mode) ("\\.lsp$" . lisp-mode)
("\\.cl$" . lisp-mode))
auto-mode-alist))
(add-hook 'lisp-mode-hook '(lambda () (require 'ilisp)))
(setq common-lisp-hyperspec-root
(expand-file-name "~/apps/CommonLispHyperSpec/"))
(setq common-lisp-hyperspec-root
(concat "file://" common-lisp-hyperspec-root))
(setq common-lisp-hyperspec-symbol-table
(expand-file-name "~/apps/CommonLispHyperSpec/Data/Map_Sym.txt"))
(setq browse-url-browser-function
'browse-url-generic)
(setq browse-url-generic-program
(expand-file-name "~/bin/openurl"))
;; initial frame customization
(setq initial-frame-alist
'((width . 120) (height . 40) (font . "-*-Monaco-*-140-*")))
;; lisp indentation customization
(mapcar (lambda (x) (put x 'lisp-indent-function 'defun))
'(with-open-file with-input-from-string with-output-to-string
with-open-socket
handler-bind))
;; eof .emacs
The openurl script looks like this:
#!/bin/sh
osascript -e 'open location "'$*'"'
But I think you can directly invoke AppleScript from Emacs now, so
maybe the openurl hack is no longer needed: I'll have to look into that.
This mailing list is archived at
http://clozure.com/pipermail/openmcl-devel/
Sven
On Sunday, November 17, 2002, at 06:55 PM, Olivier Drolet wrote:
> Hello,
>
> I'm new to Common Lisp and programming in general. Also, my Unix
> skills are limited. I want to get OpenMCL and ILisp up and running.
> I've downloaded the latest versions, and OpenMCL runs fine, but I'm a
> bit confused by the installation if ILisp. I'm using Mac OS X 10.2.2
> and would also like to tap into my local copy or the Hyperspec.
>
> Would someone with a setup similar to mine kindly send me a copy of
> their configuration files? This would help me better understand the
> installation instructions that came with ILisp.
>
> Regards,
>
> Olivier Drolet
>
>
> P.S.: Is there an archive for the mailing list?
>
>
> _______________________________________________
> Openmcl-devel mailing list
> Openmcl-devel at clozure.com
> http://clozure.com/cgi-bin/mailman/listinfo/openmcl-devel
>
>
--
Sven Van Caekenberghe - mailto:sven at beta9.be
Beta Nine - software engineering - http://www.beta9.be
.Mac - svc at mac.com - http://homepage.mac.com/svc
_______________________________________________
Openmcl-devel mailing list
Openmcl-devel at clozure.com
http://clozure.com/cgi-bin/mailman/listinfo/openmcl-devel
More information about the Openmcl-devel
mailing list