diff options
| -rw-r--r-- | elisp/geiser-repl.el | 37 | 
1 files changed, 20 insertions, 17 deletions
| diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index f0c495e..8a3f6a6 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -266,6 +266,23 @@ module command as a string")        (geiser-repl--read-impl prompt))) +;;; Prompt &co. + +(defun geiser-repl--last-prompt-end () +  (cond ((and (boundp 'comint-last-prompt) (markerp (cdr comint-last-prompt))) +         (marker-position (cdr comint-last-prompt))) +        ((and (boundp 'comint-last-prompt-overlay) comint-last-prompt-overlay) +         (overlay-end comint-last-prompt-overlay)) +        (t (save-excursion (geiser-repl--bol) (point))))) + +(defun geiser-repl--last-prompt-start () +  (cond ((and (boundp 'comint-last-prompt) (markerp (car comint-last-prompt))) +         (marker-position (car comint-last-prompt))) +        ((and (boundp 'comint-last-prompt-overlay) comint-last-prompt-overlay) +         (overlay-start comint-last-prompt-overlay)) +        (t (save-excursion (geiser-repl--bol) (point))))) + +  ;;; REPL connections  (make-variable-buffer-local @@ -369,12 +386,9 @@ module command as a string")  (defun geiser-repl--is-debugging ()    (let ((dp (geiser-con--connection-debug-prompt geiser-repl--connection)))      (and dp -         comint-last-prompt-overlay           (save-excursion -           (goto-char (overlay-start comint-last-prompt-overlay)) -           (re-search-forward dp -                              (overlay-end comint-last-prompt-overlay) -                              t))))) +           (goto-char (geiser-repl--last-prompt-start)) +           (re-search-forward dp (geiser-repl--last-prompt-end) t)))))  (defun geiser-repl--connection* ()    (let ((buffer (geiser-repl--set-up-repl geiser-impl--implementation))) @@ -489,8 +503,7 @@ module command as a string")  (defun geiser-repl--beginning-of-defun ()    (save-restriction -    (when comint-last-prompt-overlay -      (narrow-to-region (overlay-end comint-last-prompt-overlay) (point))) +    (narrow-to-region (geiser-repl--last-prompt-end) (point))      (let ((beginning-of-defun-function nil))        (beginning-of-defun)))) @@ -512,16 +525,6 @@ module command as a string")      (insert "\n")      (lisp-indent-line))) -(defun geiser-repl--last-prompt-end () -  (if comint-last-prompt-overlay -      (overlay-end comint-last-prompt-overlay) -    (save-excursion (geiser-repl--bol) (point)))) - -(defun geiser-repl--last-prompt-start () -  (if comint-last-prompt-overlay -      (overlay-start comint-last-prompt-overlay) -    (save-excursion (geiser-repl--bol) (point)))) -  (defun geiser-repl--nesting-level ()    (save-restriction      (narrow-to-region (geiser-repl--last-prompt-end) (point-max)) | 
