diff options
Diffstat (limited to 'elisp')
-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)" |