diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-07-25 14:16:50 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-07-25 14:16:50 +0200 |
commit | 27783caa940af9120ef21d005dcdd1861fc8710e (patch) | |
tree | bebd21ce8f2f02c3b2b62b6fe779828557484047 | |
parent | b4d6c6240f17b085f8afdb6933ffd440c7cb836c (diff) |
let* for update-note-count
-rw-r--r-- | lisp/mastodon-profile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index b8ac8be..bbd286e 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -265,7 +265,7 @@ NO-REBLOGS means do not display boosts in statuses." (defun mastodon-profile--update-note-count (&rest _args) "Display the character count of the profile note buffer." - (let ((inhibit-read-only t) + (let* ((inhibit-read-only t) (header-region (mastodon-tl--find-property-range 'note-header (point-min))) (count-region (mastodon-tl--find-property-range 'note-counter |