mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
(command-loop): Use
needed modules.
This commit is contained in:
parent
24dbb5ed10
commit
09499546b9
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-03-19 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
* debugging/ice-9-debugger-extensions.scm (command-loop): Use
|
||||
needed modules.
|
||||
|
||||
2008-02-22 Ludovic Courtès <ludo@gnu.org>
|
||||
|
||||
* match.scm: Export `match:andmap'. This fixes evaluation of
|
||||
|
|
|
@ -28,7 +28,10 @@
|
|||
|
||||
(cond ((string>=? (version) "1.7")
|
||||
(use-modules (ice-9 debugger command-loop))
|
||||
(define-module (ice-9 debugger command-loop))
|
||||
(define-module (ice-9 debugger command-loop)
|
||||
#:use-module (ice-9 debugger)
|
||||
#:use-module (ice-9 debugger state)
|
||||
#:use-module (ice-9 debugging traps))
|
||||
(define new-define-command define-command)
|
||||
(set! define-command
|
||||
(lambda (name argument-template documentation procedure)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue