diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-14 13:54:59 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-14 13:54:59 -0400 |
commit | da84326539ef2e880ade0ab8dc033102d90c048e (patch) | |
tree | a52216bbd18aea1051e9446098238073e3f70f20 /lisp/mastodon-toot.el | |
parent | 626c6f8607655c17906dadc418b0b47b2f774a78 (diff) |
Do some cleanup
- Rename toot--send and toot--cancel functions
- Add FIXME reminder
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r-- | lisp/mastodon-toot.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 71df449..481a187 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -42,7 +42,7 @@ STATUS is passed by `url-retrieve'." (mastodon--http-response-triage status (lambda () (switch-to-buffer (current-buffer))))) ;; FIXME -(defun mastodon-toot--send () +(defun mastodon-toot-send () "Kill new-toot buffer/window and POST contents to the Mastodon instance." (interactive) (let ((toot (buffer-string)) @@ -56,15 +56,15 @@ STATUS is passed by `url-retrieve'." "Bearer " (mastodon--access-token)))))))) -(defun mastodon-toot--cancel () +(defun mastodon-toot-cancel () "Kill new-toot buffer/window. Does not POST content to Mastodon." (interactive) (kill-buffer-and-window)) (defvar mastodon-toot-mode-map (let ((map (make-sparse-keymap))) - (define-key map (kbd "C-c C-c") #'mastodon-toot--send) - (define-key map (kbd "C-c C-k") #'mastodon-toot--cancel) + (define-key map (kbd "C-c C-c") #'mastodon-toot-send) + (define-key map (kbd "C-c C-k") #'mastodon-toot-cancel) map) "Keymap for `mastodon-toot-mode'.") |