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 | 132acb2d21520748ee664ad0595fdd62ca4d5b1d (patch) | |
| tree | 766346844da49195c60347a7b81a920d1ae4f4fa | |
| parent | 34c603820df026565ced846a78b5d24ea288aecb (diff) | |
| download | geiser-132acb2d21520748ee664ad0595fdd62ca4d5b1d.tar.gz geiser-132acb2d21520748ee664ad0595fdd62ca4d5b1d.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.
| -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) | 
