From b719e9054f902e3b4339e35bf85e2141c49248ed Mon Sep 17 00:00:00 2001 From: Johnson Denen Date: Wed, 12 Apr 2017 14:25:58 -0400 Subject: Fix return value bug --- lisp/mastodon-auth.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lisp/mastodon-auth.el') diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el index ed9b5cb..0814024 100644 --- a/lisp/mastodon-auth.el +++ b/lisp/mastodon-auth.el @@ -69,7 +69,9 @@ STATUS is passed by `url-retrieve'." (defun mastodon--register-and-return-client-app () "Register `mastodon' with an instance. Return `mastodon--client-app-plist'." - (mastodon--register-client-app)) + (progn + (mastodon--register-client-app) + mastodon--client-app-plist)) (defun mastodon--store-client-id-and-secret () "Store `:client_id' and `:client_secret' in a plstore." -- cgit v1.2.3