summaryrefslogtreecommitdiff
path: root/scheme
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-11-12 22:55:40 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-11-12 23:21:02 +0100
commite070d76166d249695f1d2ee0269cc5c91537e0c9 (patch)
treec76f2a0d251f834f3d4cb4f59f472eac5054c631 /scheme
parentc4287cdbb796507575a71a2bfc589f0f107f436f (diff)
downloadgeiser-chez-e070d76166d249695f1d2ee0269cc5c91537e0c9.tar.gz
geiser-chez-e070d76166d249695f1d2ee0269cc5c91537e0c9.tar.bz2
Make do with a single connection
Separate connections for the REPL and Geiser commands was kind of neat, but it had the problem of synchronising the current namespace for both connections. A quick fix would have been to ask the scheme for the current namespace for every Geiser command in the REPL, but that, besides clunky, would add potentially prohibitive overhead for (real) remote connections. As it happens, using a single connection turned out to be not that difficult and relatively clean code-wise. We could even turn back to not use inferior schemes, and the net result of this refactoring would be the replacement of comint-redirect (which wasn't able to match the whole EOT token if it didn't arrive all at once) by transaction queues (which also makes geiser-connection's implementation cleaner). But using an inferior scheme has a dog-food value, and allows external processes to connect to the scheme being used by Geiser without further ado, which could be useful for debugging (although this is a lame excuse: nothing prevents you from starting a REPL server from emacs if you want). We'll see.
Diffstat (limited to 'scheme')
-rw-r--r--scheme/guile/geiser/evaluation.scm1
-rw-r--r--scheme/racket/geiser/eval.rkt1
2 files changed, 0 insertions, 2 deletions
diff --git a/scheme/guile/geiser/evaluation.scm b/scheme/guile/geiser/evaluation.scm
index d7d0a68..305ccfd 100644
--- a/scheme/guile/geiser/evaluation.scm
+++ b/scheme/guile/geiser/evaluation.scm
@@ -50,7 +50,6 @@
(define (write-result result output)
(write (list (cons 'result result) (cons 'output output)))
- (write-char #\nul)
(newline))
(define (call-with-result thunk)
diff --git a/scheme/racket/geiser/eval.rkt b/scheme/racket/geiser/eval.rkt
index 1efaded..c406aae 100644
--- a/scheme/racket/geiser/eval.rkt
+++ b/scheme/racket/geiser/eval.rkt
@@ -57,7 +57,6 @@
(lambda ()
(update-signature-cache spec form)
(eval form (module-spec->namespace spec lang)))))
- (write-char #\null)
(newline))
(define compile-in eval-in)