aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-client.el
diff options
context:
space:
mode:
authorAlexander Griffith <griffitaj@gmail.com>2018-03-05 21:39:12 -0500
committerGitHub <noreply@github.com>2018-03-05 21:39:12 -0500
commitb277114d7b3be3447eeecaf3ba7ac0b282a339fe (patch)
tree02337fb012f5c71a6b3a0edff3a7d67543e2d465 /lisp/mastodon-client.el
parent4350dd571fba5996d30447eb19cfba68339a7934 (diff)
Bump to 0.7.2 and shorten long code lines (#172)
* Bump version numbers to 0.7.2 * Adjusted functions to bring line length below 90.
Diffstat (limited to 'lisp/mastodon-client.el')
-rw-r--r--lisp/mastodon-client.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mastodon-client.el b/lisp/mastodon-client.el
index cceb70a..968cdf3 100644
--- a/lisp/mastodon-client.el
+++ b/lisp/mastodon-client.el
@@ -2,7 +2,7 @@
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.7.1
+;; Version: 0.7.2
;; Homepage: https://github.com/jdenen/mastodon.el
;; Package-Requires: ((emacs "24.4"))
@@ -96,7 +96,8 @@ Make `mastodon-client--fetch' call to determine client values."
Read plist from `mastodon-client--token-file' if variable is nil.
Fetch and store plist if `mastodon-client--read' returns nil."
- (let ((client-details (cdr (assoc mastodon-instance-url mastodon-client--client-details-alist))))
+ (let ((client-details
+ (cdr (assoc mastodon-instance-url mastodon-client--client-details-alist))))
(unless client-details
(setq client-details
(or (mastodon-client--read)