branch: elpa/fedi
commit fbd008dad11344871ac8c1e9beaa337a588b26f2
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>

    star for if-/when-let calls
---
 fedi-post.el | 2 +-
 fedi.el      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fedi-post.el b/fedi-post.el
index bfbc162a7a8..a6a5bd50d8a 100644
--- a/fedi-post.el
+++ b/fedi-post.el
@@ -582,7 +582,7 @@ Added to `after-change-functions'."
     (save-match-data
       (let* ((fill-column 67))
         (goto-char (point-min))
-        (when-let ((prop (text-property-search-forward 'post-reply)))
+        (when-let* ((prop (text-property-search-forward 'post-reply)))
           (fill-region (prop-match-beginning prop)
                        (point)))))))
 
diff --git a/fedi.el b/fedi.el
index 3cf369e60ac..ee24ce0cf89 100644
--- a/fedi.el
+++ b/fedi.el
@@ -234,7 +234,7 @@ PROP is the text property to search for."
         (prog1 nil ;; return nil if nothing (so we can use in or clause)
           (message "Nothing else here."))
       (goto-char (car next-range))
-      (if-let ((hecho (fedi--property 'help-echo)))
+      (if-let* ((hecho (fedi--property 'help-echo)))
           (message "%s" hecho)))))
 
 (defun fedi-previous-tab-item ()

Reply via email to