blob: 91f31720d896587ea7135c28df23fd29dfe6e7e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*-
;;; This file is installed as /etc/sbcl.rc and run on every invocation
;;; of SBCL
(if (probe-file "/etc/lisp-config.lisp")
(load "/etc/lisp-config.lisp")
(format t "~%;;; Warning: there is no /etc/lisp-config.lisp file"))
;;; The following is required if you want source location functions to
;;; work (such as those called when you use M-. (edit definition) in
;;; ILISP or SLIME)
(setf (logical-pathname-translations "SYS")
'(("SYS:SRC;**;*.*.*" #p"/usr/lib/sbcl/src/**/*.*")
("SYS:CONTRIB;**;*.*.*" #p"/usr/lib/sbcl/**/*.*")))
;;; sbclrc ends here
|