aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnson Denen <johnson.denen@gmail.com>2017-04-23 22:26:36 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-04-23 22:26:36 -0400
commit074c525d7b125922df6d47246df8645916dedbc9 (patch)
treecf4c5d24d58c02716caaee22770957239b0f2c82
parentc6a4cfc846cd0ecd4eca7bdc02b0856d482bb364 (diff)
Make tweaks per package-lint feedback
-rw-r--r--lisp/mastodon-auth.el1
-rw-r--r--lisp/mastodon-client.el1
-rw-r--r--lisp/mastodon-http.el6
-rw-r--r--lisp/mastodon-tl.el1
-rw-r--r--lisp/mastodon-toot.el1
-rw-r--r--lisp/mastodon.el3
6 files changed, 10 insertions, 3 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el
index a608dbe..6250659 100644
--- a/lisp/mastodon-auth.el
+++ b/lisp/mastodon-auth.el
@@ -2,6 +2,7 @@
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
+;; Version: 0.5.1
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-client.el b/lisp/mastodon-client.el
index d422e78..5633591 100644
--- a/lisp/mastodon-client.el
+++ b/lisp/mastodon-client.el
@@ -2,6 +2,7 @@
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
+;; Version: 0.5.1
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el
index b41fccc..4c5d3dc 100644
--- a/lisp/mastodon-http.el
+++ b/lisp/mastodon-http.el
@@ -2,6 +2,8 @@
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
+;; Version: 0.5.1
+;; Package-Requires: ((emacs "24.4"))
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
@@ -50,7 +52,7 @@
(string-match pattern resp)
(match-string 0 resp))))
-(defun mastdon-http--status ()
+(defun mastodon-http--status ()
"Return HTTP Response Status Code from `mastodon-http--response'."
(let* ((status-line (mastodon-http--response-body "^HTTP/1.*$")))
(progn
@@ -59,7 +61,7 @@
(defun mastodon-http--triage (response success)
(let ((status (with-current-buffer response
- (mastdon-http--status))))
+ (mastodon-http--status))))
(if (string-prefix-p "2" status)
(funcall success)
(switch-to-buffer response))))
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 46b0769..8160f52 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -2,6 +2,7 @@
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
+;; Version: 0.5.1
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 1277a9c..aa3cfeb 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -2,6 +2,7 @@
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
+;; Version: 0.5.1
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index ec42447..b256a7c 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -1,8 +1,9 @@
-;;; mastodon.el --- Mastodon client for Emacs
+;;; mastodon.el --- Client for Mastodon
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
;; Version: 0.5.1
+;; Package-Requires: ((emacs "24.4"))
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.