mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 13:00:26 +02:00
* debugger.scm (run-last-command): Return current state if
last-command fluid is not yet set.
This commit is contained in:
parent
c4b1aa8b94
commit
072cb6f740
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-07-14 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
* debugger.scm (run-last-command): Return current state if
|
||||
last-command fluid is not yet set.
|
||||
|
||||
2001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
|
||||
|
||||
* safe-r5rs.scm: Use `re-export' instead of `export' for
|
||||
|
|
|
@ -114,7 +114,8 @@
|
|||
(define (run-last-command state)
|
||||
(let ((procedure (fluid-ref last-command)))
|
||||
(if procedure
|
||||
(procedure state))))
|
||||
(procedure state)
|
||||
state)))
|
||||
|
||||
(define (catch-user-errors port thunk)
|
||||
(catch 'debugger-user-error
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue