diff options
author | mousebot <mousebot@riseup.net> | 2021-09-13 20:14:28 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-09-13 21:33:16 +0200 |
commit | 14842fce7caa96c0f6234308c85a82a8e556f18f (patch) | |
tree | cdea0397fd69028a6e099f8438f76985b86048df /lisp/mastodon-profile.el | |
parent | 99a69f0cb267dcc22e3e1476f0e9f8d6dc46faa7 (diff) |
use inbuilt image scaling if emacs version => 27.1
and put point at point-min on profile load
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 82eb4db..eb75247 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -372,7 +372,8 @@ Returns a list of lists." (if (and pinned (equal endpoint-type "statuses")) (mastodon-profile--insert-statuses-pinned pinned)) (funcall update-function json))) - (mastodon-tl--goto-next-toot))) + ;;(mastodon-tl--goto-next-toot) + (goto-char (point-min)))) (defun mastodon-profile--get-toot-author () "Open profile of author of toot under point. |