Skip to content
Snippets Groups Projects
Commit 2d500643 authored by ram's avatar ram
Browse files

Changed directory-translation skeleton to be target: search-list.

Changed #+hemlock to be (when (member :hemlock *features*) ...)
parent 4a9c4360
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/generic-site.lisp,v 1.5 1992/05/30 12:56:53 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/generic-site.lisp,v 1.6 1993/08/19 14:06:37 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -28,30 +28,27 @@ ...@@ -28,30 +28,27 @@
cmucl-bugs@cs.cmu.edu. cmucl-bugs@cs.cmu.edu.
Loaded subsystems:")) Loaded subsystems:"))
;;; The following Hemlock initializations will error if run in a core without
;;; hemlock.
#+hemlock (progn
;;; If you have sources installed on your system, un-comment the following form ;;; 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 ;;; and change it to point to the source location. This will allow the Hemlock
;;; "Edit Definition" command to find sources for functions in the core. If ;;; "Edit Definition" command and the debugger to find sources for functions in
;;; this doesn't work, check that first part of the translation really does ;;; the core.
;;; have the correct prefix.
;;;
#| #|
(ed::add-definition-dir-translation (setf (search-list "target:") "<the source tree root>/")
"/afs/cs.cmu.edu/project/clisp-1/sun4c_41/15/"
"<your source location here>")
|# |#
;;; The following Hemlock initializations will error if run in a core without
;;; hemlock.
;;;
;;; Use standard X fonts for Hemlock, since the default ones may not work ;;; Use standard X fonts for Hemlock, since the default ones may not work
;;; everywhere. By default, Hemlock used 8x13 and a non-standard underline ;;; everywhere. By default, Hemlock used 8x13 and a non-standard underline
;;; font, 8x13u (which is part of the distribution.) Unfortunately, we don't ;;; font, 8x13u (which is part of the distribution.) Unfortunately, we don't
;;; have source for this font, since it was created by hand-editing the ;;; have source for this font, since it was created by hand-editing the
;;; bitmaps. ;;; bitmaps.
;;; ;;;
(hi:setv ed::open-paren-highlighting-font "*-courier-bold-r-normal--*-120-*") (when (member :hemlock *features*)
(hi:setv ed::default-font "*-courier-medium-r-normal--*-120-*") (hi::%set-variable-value 'ed::open-paren-highlighting-font :global nil
(hi:setv ed::active-region-highlighting-font "*-courier-bold-r-normal--*-120-*")
"*-courier-medium-o-normal--*-120-*") (hi::%set-variable-value 'ed::default-font :global nil
"*-courier-medium-r-normal--*-120-*")
); #+hemlock (hi::%set-variable-value 'ed::active-region-highlighting-font :global nil
"*-courier-medium-o-normal--*-120-*"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment