diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-12 01:33:09 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-12 01:33:09 +0100 |
commit | dc8155b5d0e5c533a1fc6cb64399e8cccd7c1716 (patch) | |
tree | 630f0ac4050f3f4179e0a8402f3b0e88c539b012 /elisp/geiser-repl.el | |
parent | 24fe735860a68542bb569bb59c712995f7bd1deb (diff) | |
download | geiser-guile-dc8155b5d0e5c533a1fc6cb64399e8cccd7c1716.tar.gz geiser-guile-dc8155b5d0e5c533a1fc6cb64399e8cccd7c1716.tar.bz2 |
Guile reconnected (but not debuggable (yet))
Or the importance of EOL. Switching to a transaction queue for
communication with the Scheme process means that i had to care about
sending eols in the queries... Guile was waiting for ever reading a
metacommand taking a variable number of arguments. Argh: this has
taken me a few hours -- i'm getting old.
Diffstat (limited to 'elisp/geiser-repl.el')
-rw-r--r-- | elisp/geiser-repl.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 9136db5..2117ff1 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -118,7 +118,7 @@ expression for this implementation's geiser scheme prompt.") "A variable (or thunk returning a value) giving the regular expression for this implementation's debugging prompt.") -(geiser-impl--define-caller geiser-repl--startup startup () +(geiser-impl--define-caller geiser-repl--startup repl-startup (remote) "Function taking no parameters that is called after the REPL has been initialised. All Geiser functionality is available to you at that point.") @@ -264,7 +264,7 @@ module command as a string") (geiser-repl--history-setup) (add-to-list 'geiser-repl--repls (current-buffer)) (geiser-repl--set-this-buffer-repl (current-buffer)) - (geiser-repl--startup impl) + (geiser-repl--startup impl remote) (message "%s up and running!" (geiser-repl--repl-name impl)))) (defun geiser-repl--connection () @@ -599,7 +599,7 @@ With a prefix argument, force exit by killing the scheme process." (with-current-buffer repl (push (cons geiser-impl--implementation (when geiser-repl--remote-p - (list geiser-repl--host geiser-repl--port))) + (list (geiser-repl--host) (geiser-repl--port)))) lst)))))) (defun geiser-repl--restore (impls) |