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 | 3a622d1bd4e61948915fc0eec957bfecec729b8b (patch) | |
| tree | 5c3fde576de99aeb39b5ab88c62c9dbd8835f401 /elisp | |
| parent | e6938a38ec9a0856f2876942907a89efc3a43b6d (diff) | |
| download | geiser-3a622d1bd4e61948915fc0eec957bfecec729b8b.tar.gz geiser-3a622d1bd4e61948915fc0eec957bfecec729b8b.tar.bz2 | |
Minor bug fix.
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 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))))))) | 
