diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-11 13:29:05 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-12 18:11:48 -0400 |
commit | 82cf1d7faa31c654a2984e9d96b4e8e033694cf6 (patch) | |
tree | 2d160945df10eb58f0047dbc4efa0b8a6376ca1f | |
parent | 88e7f432c089a31aea0694173fd16707ac01b931 (diff) |
Remove progn and return register-client-app funcall
-rw-r--r-- | lisp/mastodon-auth.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el index 2d5e19f..1892518 100644 --- a/lisp/mastodon-auth.el +++ b/lisp/mastodon-auth.el @@ -65,9 +65,7 @@ STATUS is passed by `url-retrieve'." (defun mastodon--register-and-return-client-app () "Register `mastodon' with an instance. Return `mastodon--client-app-plist'." - (progn - (mastodon--register-client-app) - mastodon--client-app-plist)) + (mastodon--register-client-app)) (defun mastodon--store-client-id-and-secret () "Store `:client_id' and `:client_secret' in a plstore." |