diff options
author | Macon Gambill <macon@arstne.io> | 2024-09-07 10:12:59 -0400 |
---|---|---|
committer | Macon Gambill <macon@arstne.io> | 2024-09-07 10:12:59 -0400 |
commit | 3eafde36a23a681348749d4eabf239edb9ffa6ae (patch) | |
tree | 301135fb3d95fa440d42db7b4de25109f5aec3ab | |
parent | c034c129cfa7442881f13ae146c87785b367cff5 (diff) | |
download | geiser-3eafde36a23a681348749d4eabf239edb9ffa6ae.tar.gz geiser-3eafde36a23a681348749d4eabf239edb9ffa6ae.tar.bz2 |
geiser-repl--find-output-region: fix for 2-character prompts
-rw-r--r-- | elisp/geiser-repl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 6f6cea7..23d8828 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 |