diff options
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 0fced8c..521bb7f 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -224,7 +224,7 @@ Move forward (down) the timeline unless BACKWARD is non-nil." (defun mastodon-tl--more () "Append older toots to timeline." (interactive) - (let* ((point-before-update (point)) + (let* ((point-before (point)) (tl (mastodon-tl--timeline-name)) (id (mastodon-tl--oldest-id)) (json (mastodon-tl--more-json tl id))) @@ -233,7 +233,7 @@ Move forward (down) the timeline unless BACKWARD is non-nil." (let ((inhibit-read-only t)) (goto-char (point-max)) (mastodon-tl--timeline json) - (goto-char point-before-update) + (goto-char point-before) (mastodon-tl--goto-next-toot)))))) (defun mastodon-tl--update () |