diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-01-17 14:09:26 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-01-17 14:09:26 +0100 |
commit | c40f4db9dce660802f1173e281d9a1e139ebd819 (patch) | |
tree | 88d3526bff525e1b909a49dc5214ab69f3fdd9bf /elisp/geiser-connection.el | |
parent | 37c582ee0552e67c2363ad833d6159b13c89d6d8 (diff) | |
download | geiser-guile-c40f4db9dce660802f1173e281d9a1e139ebd819.tar.gz geiser-guile-c40f4db9dce660802f1173e281d9a1e139ebd819.tar.bz2 |
Minor bug 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 af4c611..bdac427 100644 --- a/elisp/geiser-connection.el +++ b/elisp/geiser-connection.el @@ -1,6 +1,6 @@ ;;; geiser-connection.el -- talking to a scheme process -;; Copyright (C) 2009 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -155,7 +155,7 @@ (re-search-forward "((\\(result\\|error\\)\\>") (goto-char (match-beginning 0)) (let ((form (read (current-buffer)))) - (if (listp form) form (error)))) + (if (listp form) form (error "")))) (error `((error (key . geiser-con-error)) (output . ,(buffer-string))))))) |