diff options
author | jao <jao@gnu.org> | 2025-08-10 04:06:20 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2025-08-10 04:06:20 +0100 |
commit | 988fdf100eaa98148509d084e3e8ece711e368d2 (patch) | |
tree | 521a110e86fe87433ac15f171463b3f73fbdad13 /elisp | |
parent | 20f87b41afe31b982d773ce943759388cc92fd4a (diff) | |
download | geiser-988fdf100eaa98148509d084e3e8ece711e368d2.tar.gz geiser-988fdf100eaa98148509d084e3e8ece711e368d2.tar.bz2 |
REPL: Fix for debugger access affecting mainly Guile.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-connection.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-connection.el b/elisp/geiser-connection.el index 68fd412..24c9a2c 100644 --- a/elisp/geiser-connection.el +++ b/elisp/geiser-connection.el @@ -139,7 +139,7 @@ (defun geiser-con--connection-update-debugging (c txt) (let* ((dp (geiser-con--connection-debug-prompt c)) - (is-d (and (stringp dp) (string-match dp txt)))) + (is-d (and (stringp dp) (string-match-p dp txt)))) (geiser-con--connection-set-debugging c is-d) is-d)) |