summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Nguyen <james@jojojames.com>2026-04-27 02:34:33 -0400
committerJames Nguyen <james@jojojames.com>2026-04-27 02:34:33 -0400
commit3bb356bf3a196da0e14be2fc56d62920311bcc51 (patch)
tree876cf2658662021dfe664115b9cabf4d1cb0b350
parent79d2f35eec47bc1b5d0cfd7ab73627329feda180 (diff)
Use when-let*HEADmaster
-rw-r--r--modes/agent-shell/evil-collection-agent-shell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modes/agent-shell/evil-collection-agent-shell.el b/modes/agent-shell/evil-collection-agent-shell.el
index 0b5fa46..b3aeecd 100644
--- a/modes/agent-shell/evil-collection-agent-shell.el
+++ b/modes/agent-shell/evil-collection-agent-shell.el
@@ -57,7 +57,7 @@ Walks the buffer backward from `point-max' looking for text with the
marker that `agent-shell--make-permission-button' adds to each button."
(save-excursion
(goto-char (point-max))
- (when-let ((match (text-property-search-backward
+ (when-let* ((match (text-property-search-backward
'agent-shell-permission-button t t)))
(get-text-property (prop-match-beginning match) 'keymap))))