summaryrefslogtreecommitdiff
path: root/elisp/geiser-repl.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-10-30 04:57:31 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-10-30 04:57:31 +0200
commit92ebee294b4d66abbbb3250ce910239427c48ebb (patch)
treefecbd5833c0af3664f9dd6d7b7dccec683d84799 /elisp/geiser-repl.el
parentfcc581bea01856c8c644bf3e312c2369949b353f (diff)
downloadgeiser-92ebee294b4d66abbbb3250ce910239427c48ebb.tar.gz
geiser-92ebee294b4d66abbbb3250ce910239427c48ebb.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.el3
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 ()