mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-14 21:32:49 -08:00
The debugger now shows the package names of inspected variables.
This commit is contained in:
parent
5338bcb157
commit
dc0ce4b7ab
2 changed files with 4 additions and 2 deletions
|
|
@ -5,6 +5,8 @@ ECL 9.12.2:
|
|||
|
||||
- RANDOM broken on 64-bits architectures.
|
||||
|
||||
- The debugger now shows the package names of inspected variables.
|
||||
|
||||
* Other changes:
|
||||
|
||||
- Methods now show up in the debugger with their original name.
|
||||
|
|
|
|||
|
|
@ -942,11 +942,11 @@ Use special code 0 to cancel this operation.")
|
|||
(if no-values
|
||||
(do ((vals variables (cddr vals)))
|
||||
((endp vals))
|
||||
(format t "~% ~A" (car vals))
|
||||
(format t "~% ~S" (car vals))
|
||||
)
|
||||
(do ((vals variables (cddr vals)))
|
||||
((endp vals))
|
||||
(format t "~% ~A: ~S" (car vals) (cadr vals))
|
||||
(format t "~% ~S: ~S" (car vals) (cadr vals))
|
||||
)
|
||||
)
|
||||
(format t "none")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue