aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-views.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus@riseup.net>2024-08-13 09:37:29 +0200
committermarty hiatt <martianhiatus@riseup.net>2024-08-13 09:37:29 +0200
commitcaf694e383a3382bdd8bf712d86acbe1e50f00ef (patch)
treeb72da3e9f3fc227aef8d662e59988668a919d8e5 /lisp/mastodon-views.el
parentd619c096de763075a52c3836a8d0a617bedec19b (diff)
flymake views.el
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r--lisp/mastodon-views.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el
index a363ef0..b23d364 100644
--- a/lisp/mastodon-views.el
+++ b/lisp/mastodon-views.el
@@ -531,7 +531,7 @@ If ID, just return that toot."
(interactive)
(let ((id (mastodon-tl--property 'id :no-move)))
(if (null id)
- (user-error "no scheduled toot at point?")
+ (user-error "No scheduled toot at point?")
(mastodon-toot--schedule-toot :reschedule))))
(defun mastodon-views--copy-scheduled-toot-text ()
@@ -549,7 +549,7 @@ NO-CONFIRM means there is no ask or message, there is only do."
(interactive)
(let ((id (or id (mastodon-tl--property 'id :no-move))))
(if (null id)
- (user-error "no scheduled toot at point?")
+ (user-error "No scheduled toot at point?")
(when (or no-confirm
(y-or-n-p "Cancel scheduled toot?"))
(let* ((url (mastodon-http--api (format "scheduled_statuses/%s" id)))
@@ -565,7 +565,7 @@ NO-CONFIRM means there is no ask or message, there is only do."
(interactive)
(let ((id (mastodon-tl--property 'id :no-move)))
(if (null id)
- (user-error "no scheduled toot at point?")
+ (user-error "No scheduled toot at point?")
(let* ((toot (mastodon-tl--property 'scheduled-json :no-move))
(scheduled (alist-get 'scheduled_at toot)))
(let-alist (alist-get 'params toot)