diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-09 23:01:08 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-09 23:19:45 -0400 |
commit | 5cf1dd9c2fb4279dfb603a77b4ce6545f954169d (patch) | |
tree | 84c8af2fafb7c3530e0e70a918f270c3db9668cf /lisp/mastodon.el | |
parent | bf6f3632e8afbdde33a894348e345830fe003b97 (diff) |
Fix #8 flycheck issues
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 2c68951..e69e10d 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -1,5 +1,17 @@ +;;; mastodon.el -- Mastodon client for Emacs + +;;; Commentary: + +;; mastodon.el is an Emacs client for Mastodon, the federated microblogging +;; social network. It is very much a work-in-progress, but it is a labor of +;; love. + +;;; Code: + (defgroup mastodon nil - "Interface with Mastodon.") + "Interface with Mastodon." + :prefix "mastodon-" + :group 'external) (defcustom mastodon-instance-url "https://mastodon.social" "Base URL for the Masto instance from which you toot." @@ -15,7 +27,7 @@ ;;;###autoload (defun mastodon-toot () - "Updates a Mastodon instance with new toot. Content is captured in a new buffer." + "Update a Mastodon instance with new toot. Content is captured in a new buffer." (interactive) (progn (require 'mastodon-toot) @@ -31,3 +43,4 @@ (mastodon--store-client-id-and-secret))) (provide 'mastodon) +;;; mastodon.el ends here |