diff options
author | Alexander Griffith <griffitaj@gmail.com> | 2017-04-24 12:28:04 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-24 12:44:25 -0400 |
commit | 18ef1b8ba52bc29785d034012c1519c308da56aa (patch) | |
tree | be0055d92bb3a314dbccd3e6e3197926d157ec67 /lisp/mastodon-tl.el | |
parent | 16726abaa9f006b8826dd5c0e1630b39859c996f (diff) |
fix #65 altered indentation
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 () |