From be34499abce0869c92a5141dd89149c180e88bb0 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Mon, 14 Feb 2011 06:48:31 +0100 Subject: [PATCH] Fix for the fix of the fix --- elisp/geiser-connection.el | 4 ++-- 1 file 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)" -- 2.11.4.GIT