diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-11-09 22:35:20 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-11-09 22:35:20 +0100 |
commit | 8108187270e4dd1638013de5a51641f45e3abc09 (patch) | |
tree | 58ba79e2612670e7215e33ad3be543f3bdee8590 /lisp/mastodon-profile.el | |
parent | 8e576fc29715436adbf8bda0432d909e3f15de2e (diff) |
buffer-for: fix () to ensure goto point min works on cycle
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 4870dae..625da0a 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -682,13 +682,13 @@ HEADERS means also fetch link headers for pagination." (when (and pinned (equal endpoint-type "statuses")) (mastodon-profile--insert-statuses-pinned pinned) (setq mastodon-tl--update-point (point))) ; updates after pinned toots - (funcall update-function json))) - (goto-char (point-min)) - (message - (substitute-command-keys - ;; "\\[mastodon-profile--account-view-cycle]" ; not always bound? - "\\`C-c C-c' to cycle profile views: toots, followers, following. -\\`C-c C-s' to search user's toots."))))) + (funcall update-function json)) + (goto-char (point-min)) + (message + (substitute-command-keys + ;; "\\[mastodon-profile--account-view-cycle]" ; not always bound? + "\\`C-c C-c' to cycle profile views: toots, followers, following. +\\`C-c C-s' to search user's toots.")))))) (defun mastodon-profile--format-joined-date-string (joined) "Format a human-readable Joined string from timestamp JOINED. |