Forked from
cmucl / cmucl
6885 commits behind the upstream repository.
generic-site.lisp 1.48 KiB
;;; -*- Mode: Lisp; Package: System -*-
;;;
;;; **********************************************************************
;;; This code was written as part of the CMU Common Lisp project at
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/generic-site.lisp,v 1.13 1998/05/04 00:05:54 dtc Exp $")
;;;
;;; **********************************************************************
;;;
;;; Generic site specific initialization for CMU CL. This can be used as a
;;; template for non-cmu "library:site-init" files.
;;;
(in-package "SYSTEM")
;;; Put your site name here...
(setq *short-site-name* "Unknown")
(setq *long-site-name* "Site name not initialized")
;;; We would appreciate it if each site establishes a local maintainer who can
;;; filter bug reports from novice users to make sure that they really have
;;; found a bug. Fill in the maintainer's address here..
(rplaca
(cdr (member :bugs *herald-items*))
'("Send questions and bug reports to your local CMU CL maintainer, "
"or to cmucl-help@cons.org. and cmucl-imp@cons.org. respectively." terpri
"Loaded subsystems:" terpri))
;;; If you have sources installed on your system, un-comment the following form
;;; and change it to point to the source location. This will allow the Hemlock
;;; "Edit Definition" command and the debugger to find sources for functions in
;;; the core.
#|
(setf (search-list "target:") "<the source tree root>/")
|#