From df76615cf9ea496bf1544c81b6585b9a8cf3974e Mon Sep 17 00:00:00 2001 From: Protesilaos Stavrou Date: Sat, 22 Nov 2025 12:10:43 +0200 Subject: [PATCH] Make stylistic change to let binding of denote--get-active-region-content --- denote.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/denote.el b/denote.el index 710b956..a8ac421 100644 --- a/denote.el +++ b/denote.el @@ -5262,7 +5262,7 @@ This is useful as the value of the user option (defun denote--get-active-region-content () "Return the text of the active region, else nil." - (when-let* (((region-active-p)) + (when-let* ((_ (region-active-p)) (beg (region-beginning)) (end (region-end)) (contents (buffer-substring-no-properties beg end))