branch: elpa/geiser
commit 3eafde36a23a681348749d4eabf239edb9ffa6ae
Author: Macon Gambill <[email protected]>
Commit: Macon Gambill <[email protected]>

    geiser-repl--find-output-region: fix for 2-character prompts
---
 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el
index 6f6cea7c23..23d8828049 100644
--- a/elisp/geiser-repl.el
+++ b/elisp/geiser-repl.el
@@ -521,7 +521,7 @@ will be set up using `geiser-connect-local' when a REPL is 
started.")
         (forward-line)
         (when (> (point) geiser-repl--last-output-start)
           (set-marker geiser-repl--last-output-start (point)))))
-    (> (- geiser-repl--last-output-end geiser-repl--last-output-start) 2)))
+    (>= (- geiser-repl--last-output-end geiser-repl--last-output-start) 2)))
 
 (defun geiser-repl--treat-output-region ()
   (with-silent-modifications

Reply via email to