blob: bd0ab76b6adf4fd3d01d3e719176d50fbb2b2622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER -*-
;;; This file is installed as /etc/sbclrc 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/**/*.*")))
|