summaryrefslogtreecommitdiff
path: root/scheme
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2009-05-16 00:31:20 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2009-05-16 00:31:20 +0200
commit588b11871548e3eb8712cca5dc710462e34d8e03 (patch)
treee31c4dd9b9e032930bddb347c0d3339e9f0b574e /scheme
parent774235f8f08166dbe1311047235fa160a37a3d08 (diff)
downloadgeiser-chez-588b11871548e3eb8712cca5dc710462e34d8e03.tar.gz
geiser-chez-588b11871548e3eb8712cca5dc710462e34d8e03.tar.bz2
PLT: A bit more sensible prompt format.
Diffstat (limited to 'scheme')
-rw-r--r--scheme/plt/geiser/eval.ss2
-rw-r--r--scheme/plt/geiser/modules.ss2
2 files changed, 2 insertions, 2 deletions
diff --git a/scheme/plt/geiser/eval.ss b/scheme/plt/geiser/eval.ss
index 56a321e..8022a4c 100644
--- a/scheme/plt/geiser/eval.ss
+++ b/scheme/plt/geiser/eval.ss
@@ -88,7 +88,7 @@
(define (make-repl-reader builtin-reader)
(lambda (ns)
(last-namespace ns)
- (printf "mzscheme@(~a)" (namespace->module-name ns))
+ (printf "mzscheme@~a" (namespace->module-name ns))
(builtin-reader)))
;;; eval.ss ends here
diff --git a/scheme/plt/geiser/modules.ss b/scheme/plt/geiser/modules.ss
index 142cf1e..5819bc4 100644
--- a/scheme/plt/geiser/modules.ss
+++ b/scheme/plt/geiser/modules.ss
@@ -87,7 +87,7 @@
((eq? path '#%kernel) "(kernel)")
((string? path) path)
((symbol? path) (symbol->string path))
- (else "<top>")))
+ (else "")))
(define (skippable-dir? path)