From dc0ce4b7abce0e582f79a5fd52b28b09ee7b0791 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 2 Dec 2009 20:39:03 +0100 Subject: [PATCH] The debugger now shows the package names of inspected variables. --- src/CHANGELOG | 2 ++ src/lsp/top.lsp | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/CHANGELOG b/src/CHANGELOG index 3d7e4d868..b50428524 100755 --- a/src/CHANGELOG +++ b/src/CHANGELOG @@ -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. diff --git a/src/lsp/top.lsp b/src/lsp/top.lsp index 2e297d267..7e456d696 100644 --- a/src/lsp/top.lsp +++ b/src/lsp/top.lsp @@ -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")