summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--elisp/geiser-connection.el2
-rw-r--r--news.org2
2 files changed, 3 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))
diff --git a/news.org b/news.org
index 9354e6a..b4c1dc4 100644
--- a/news.org
+++ b/news.org
@@ -9,6 +9,8 @@
- Highlight only if show-paren-mode is enabled
- Compatibility with electric-pair-mode
+ - REPL: Fix for debugger access affecting mainly Guile.
+
* Version 0.31.1 (September 1, 2024)
- Code cleanups