diff options
-rw-r--r-- | elisp/geiser-connection.el | 2 | ||||
-rw-r--r-- | news.org | 2 |
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)) @@ -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 |