Browse Source

Merge pull request #505 from Abizern/clisp-extension

Clisp extension
custom
Bozhidar Batsov 12 years ago
parent
commit
424e20336d
  1. 5
      modules/prelude-common-lisp.el

5
modules/prelude-common-lisp.el

@ -35,7 +35,10 @@
(require 'prelude-lisp) (require 'prelude-lisp)
;; the SBCL configuration file is in Common Lisp ;; the SBCL configuration file is in Common Lisp
(add-to-list 'auto-mode-alist '("\\.sbclrc$" . lisp-mode))
(add-to-list 'auto-mode-alist '("\\.sbclrc\\'" . lisp-mode))
;; Open files with .cl extension in lisp-mode
(add-to-list 'auto-mode-alist '("\\.cl\\'" . lisp-mode))
;; Common Lisp support depends on SLIME being installed with Quicklisp ;; Common Lisp support depends on SLIME being installed with Quicklisp
(if (file-exists-p (expand-file-name "~/quicklisp/slime-helper.el")) (if (file-exists-p (expand-file-name "~/quicklisp/slime-helper.el"))

Loading…
Cancel
Save