diff options
| author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-02-14 06:25:59 +0100 | 
|---|---|---|
| committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-02-14 06:25:59 +0100 | 
| commit | a864aa029f751416da37c8b3a02fad4c8558cae7 (patch) | |
| tree | 993b7e9c688d56d59d96122d957a936aecded9f3 /elisp | |
| parent | ba932f095a7078d602802940f326216e85a847ce (diff) | |
| download | geiser-a864aa029f751416da37c8b3a02fad4c8558cae7.tar.gz geiser-a864aa029f751416da37c8b3a02fad4c8558cae7.tar.bz2  | |
Fix for the fix
Diffstat (limited to 'elisp')
| -rw-r--r-- | elisp/geiser-connection.el | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/elisp/geiser-connection.el b/elisp/geiser-connection.el index fb16aa6..cce2c5b 100644 --- a/elisp/geiser-connection.el +++ b/elisp/geiser-connection.el @@ -199,7 +199,8 @@        (condition-case err            (let* ((start (string-match "((\\(?:result\\|error\\) " answer))                   (form (or (and start (car (read-from-string answer start))) -                           `((error . retort-syntax) (output . ,answer))))) +                           `((error (key . retort-syntax) +                                    (output . ,answer))))))              form)          (error `((error (key . geiser-con-error))                   (output . ,(format "%s\n(%s)"  | 
