Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/clever.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
#+ABCL "lisp"
#+(and :DEC :Ultrix) "lsp"
#+:VMS "LSP"
#+:ccl "LISP" ;Coral
#+:ccl "lisp" ;Coral
#+allegro "lisp" ;or cl ... hmm.
#+sbcl "lisp"
"lisp" ;For Unix, Exploder, and anyone else
))

Expand All @@ -53,11 +54,12 @@
#+(and :DEC :VMS) "FAS"
#+Lucid (car lucid::*load-binary-pathname-types*) ;?
#+KCL "o"
#+:ccl "FASL" ;Coral
#+:ccl "lx64fsl" ;Coral
#+LispWorks "fsl"
#+allegro "fasl"
#+(and cmu hpux) "hpf"
#+abcl "abcl"
#+sbcl "fasl"
)) ;(or) => nil otherwise

(defvar *compile-if-necessary-p* nil)
Expand Down Expand Up @@ -169,4 +171,3 @@
~%but loading source because it's newer.~%"
(namestring obj?))
(load-it src?)))))))))

9 changes: 4 additions & 5 deletions src/eval.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

(defun scheme-eval (form env)
(eval (scheme-translator:translate form env)))


; Hack to get define-syntaxes communicated from .bin files to system
; in which .bin file is loaded. Calls to *define-syntax!* necessarily
Expand Down Expand Up @@ -89,7 +89,7 @@
;; Intentionally absent: right parenthesis, semicolon, whitespace
'(
;; Non-constituents
"\"#'(,`"
"\"'(,`"
;; Constituents (more or less)
;;
;; Actually we don't want to hack these, since otherwise the
Expand Down Expand Up @@ -197,7 +197,7 @@
(*target-package* (scheme-translator:program-env-package env))
(*scheme-read* *scheme-read*)) ;Allow (setq *scheme-read* ...)
(funcall fun env))))


; TRANSLATE-FILE

Expand Down Expand Up @@ -374,7 +374,7 @@
(system::listener-top-loop ; Seems to work better than system::%top-level
;; You could specify :PROMPT here (see LW:*PROMPT*) but the default is good.
:eval-print-hook
#'(lambda (values)
#'(lambda (values)
(let ((*print-case* :downcase))
(loop for (result . more) on values
do (write-result result)
Expand Down Expand Up @@ -456,4 +456,3 @@
(set-in-user-env 'scheme::pp #'pp)
(set-in-user-env 'scheme::error #'scheme-error)
(set-in-user-env 'scheme::benchmark-mode #'benchmark-mode))