The debugger now shows the package names of inspected variables.

This commit is contained in:
Juan Jose Garcia Ripoll 2009-12-02 20:39:03 +01:00
parent 5338bcb157
commit dc0ce4b7ab
2 changed files with 4 additions and 2 deletions

View file

@ -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.

View file

@ -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")