Ignore:
Timestamp:
05/07/09 22:01:52 (14 years ago)
Author:
astalla
Message:

Fixed compilation with temp files with JSR-223. Refactoring of AbclScriptEngine?
(mostly elimination of dead code). Changed policy of use of #'sys::%debugger-hook-function
in an attempt to have the throwing debugger cover more cases; it still doesn't
work always.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/scripting/lisp/config.lisp

    r11629 r11839  
    4242(defparameter *compile-using-temp-files* t)
    4343
    44 (defconstant +standard-debugger-hook+ *debugger-hook*)
    45 
    46 (defun configure-abcl ()
    47   (setq *debugger-hook*
    48   (if *use-throwing-debugger*
    49       #'sys::%debugger-hook-function
    50       +standard-debugger-hook+))
     44(defun configure-abcl (abcl-script-engine)
    5145  (when *launch-swank-at-startup*
    5246    (unless *swank-dir*
    5347      (error "Swank directory not specified, please set *swank-dir*"))
     48    (when *use-throwing-debugger*
     49      (setf *debugger-hook* #'sys::%debugger-hook-function))
    5450    (pushnew *swank-dir* asdf:*central-registry* :test #'equal)
    5551    (asdf:oos 'asdf:load-op :swank)
Note: See TracChangeset for help on using the changeset viewer.