mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* boot-9.scm: Added loading of session support module.
* boot-9.scm (beautify-user-module!): Don't add the root module interface to the end of the use-list of the root module.
This commit is contained in:
parent
25a301d67d
commit
90d5e28037
2 changed files with 11 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
Sat Mar 8 00:07:54 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
|
||||
|
||||
* boot-9.scm: Added loading of session support module.
|
||||
|
||||
* debug.scm: Removed `display-application'. (Replaced by
|
||||
primitive procedure.)
|
||||
|
||||
|
|
|
@ -3654,6 +3654,15 @@
|
|||
(if (memq 'debug-extensions *features*)
|
||||
(define-module (guile) :use-module (ice-9 debug)))
|
||||
|
||||
|
||||
;;; {Load session support if present.}
|
||||
;;;
|
||||
;;; *fixme* This is a temporary solution.
|
||||
;;;
|
||||
|
||||
(if (%search-load-path "ice-9/session.scm")
|
||||
(define-module (guile) :use-module (ice-9 session)))
|
||||
|
||||
|
||||
;;; {Load thread code if threads are present.}
|
||||
;;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue