diff options
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 9dade6c..e025a6e 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -248,9 +248,8 @@ Move forward (down) the timeline unless BACKWARD is non-nil." (defun mastodon-tl--oldest-id () "Return toot-id from the bottom of the buffer." - (progn - (goto-char (point-max)) - (mastodon-tl--property 'toot-id t))) + (goto-char (point-max)) + (mastodon-tl--property 'toot-id t)) (defun mastodon-tl--thread () "Open thread buffer for toot under `point'." |