summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-11-12 02:20:14 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-11-12 02:20:14 +0100
commit541c0090133326accc896081acd359c5c7dea838 (patch)
tree4911cfd14d3d839dafd845fa2fa59922d47ba33b /elisp
parent132acb2d21520748ee664ad0595fdd62ca4d5b1d (diff)
downloadgeiser-541c0090133326accc896081acd359c5c7dea838.tar.gz
geiser-541c0090133326accc896081acd359c5c7dea838.tar.bz2
Better EOT token for more robust communication
Diffstat (limited to 'elisp')
-rw-r--r--elisp/geiser-connection.el10
-rw-r--r--elisp/geiser-repl.el5
2 files changed, 9 insertions, 6 deletions
diff --git a/elisp/geiser-connection.el b/elisp/geiser-connection.el
index c50e207..324532b 100644
--- a/elisp/geiser-connection.el
+++ b/elisp/geiser-connection.el
@@ -70,14 +70,14 @@
;;; Connection datatype:
+(defun geiser-con--combined-prompt (prompt debug)
+ (format "\\(%s%s\\)" prompt (if debug (format "\\|%s" debug) "")))
+
(defun geiser-con--make-connection (proc prompt debug-prompt)
(list :geiser-connection
(cons :tq (tq-create proc))
- (cons :eot (format "\\(%s%s\\)"
- prompt
- (if debug-prompt
- (format "\\|%s" debug-prompt)
- "")))
+ (cons :eot (format "\0\n%s"
+ (geiser-con--combined-prompt prompt debug-prompt)))
(cons :prompt prompt)
(cons :debug-prompt debug-prompt)
(cons :count 0)
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el
index 2117ff1..d99ace0 100644
--- a/elisp/geiser-repl.el
+++ b/elisp/geiser-repl.el
@@ -255,7 +255,7 @@ module command as a string")
prompt-rx
deb-prompt-rx))
(set (make-local-variable 'comint-prompt-regexp)
- (geiser-con--connection-eot geiser-repl--connection))
+ (geiser-con--combined-prompt prompt-rx deb-prompt-rx))
(apply 'make-comint-in-buffer `(,cname ,(current-buffer) ,address)))
(error (insert "Unable to start REPL:\n\n"
(error-message-string err) "\n")
@@ -284,6 +284,9 @@ module command as a string")
(let ((comint-input-filter (lambda (x) nil)))
(comint-send-input nil t))))
+(defun geiser-repl--send-silent (cmd)
+ (comint-redirect-results-list cmd ".+" 0))
+
;;; REPL history and clean-up: