diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-10-30 04:57:31 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-10-30 04:57:31 +0200 |
commit | 89e1f6444208bc70deeeca765f212296ed11c634 (patch) | |
tree | 157946b1656e169664300497becf504f05a1c1b6 /elisp/geiser-repl.el | |
parent | d89131b0ff58fb6d8d12fa0404f2b0d26e964d72 (diff) | |
download | geiser-guile-89e1f6444208bc70deeeca765f212296ed11c634.tar.gz geiser-guile-89e1f6444208bc70deeeca765f212296ed11c634.tar.bz2 |
Elisp: more flexible parsing of :eval and :ge forms
This allows the implementation decide the concrete structure of the
code sent to the REPL. For instance, it doesn't need to be a single
s-expression, and argument order can be re-arranged.
Diffstat (limited to 'elisp/geiser-repl.el')
-rw-r--r-- | elisp/geiser-repl.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index d55207e..900ba16 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -481,8 +481,7 @@ With a prefix argument, force exit by killing the scheme process." (compilation-forget-errors)) (comint-send-input) (when (string-match "^\\s-*$" intxt) - (comint-send-string proc - (geiser-eval--scheme-str '((:ge no-values)))) + (comint-send-string proc (geiser-eval--scheme-str '(:ge no-values))) (comint-send-string proc "\n"))))) (defun geiser-repl--maybe-send () |