From 5cf1dd9c2fb4279dfb603a77b4ce6545f954169d Mon Sep 17 00:00:00 2001 From: Johnson Denen Date: Sun, 9 Apr 2017 23:01:08 -0400 Subject: Fix #8 flycheck issues --- lisp/mastodon.el | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'lisp/mastodon.el') 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 -- cgit v1.2.3