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