From 4d0bd43c0ede0159c0f0130a5565ea5a6511997a Mon Sep 17 00:00:00 2001 From: Holger Dürer Date: Tue, 2 May 2017 20:39:09 +0100 Subject: Clean up use of progn. - Lambda, defun, let, etc. all have an implicit progn. - A progn with a single form is identical to that single form. --- lisp/mastodon-tl.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lisp/mastodon-tl.el') 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'." -- cgit v1.2.3