mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* boot-9.scm: Preliminary solution: optionally load the debug
module.
This commit is contained in:
parent
96a8aaf3b3
commit
c56634ba1a
1 changed files with 9 additions and 3 deletions
|
@ -791,8 +791,8 @@
|
|||
(lambda args #f))))
|
||||
(append (parse-path lp)
|
||||
(list ""
|
||||
(in-vicinity (implementation-vicinity) "gls/guile/")
|
||||
(in-vicinity (implementation-vicinity) "gls/")
|
||||
(in-vicinity (implementation-vicinity) "guile1.0b3/guile/")
|
||||
(in-vicinity (implementation-vicinity) "guile1.0b3/")
|
||||
(in-vicinity (implementation-vicinity) "slib/")))))
|
||||
|
||||
;;; {try-load}
|
||||
|
@ -3565,5 +3565,11 @@
|
|||
|
||||
|
||||
|
||||
(define-module (guile))
|
||||
;;; {Load debug extension code if debug extensions present.}
|
||||
;;;
|
||||
;;; *fixme* This is a temporary solution.
|
||||
;;;
|
||||
|
||||
(if (memq 'debug-extensions *features*)
|
||||
(define-module (guile) :use-module (ice-9 debug))
|
||||
(define-module (guile)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue