diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-08-13 09:37:29 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-08-13 09:37:29 +0200 |
commit | caf694e383a3382bdd8bf712d86acbe1e50f00ef (patch) | |
tree | b72da3e9f3fc227aef8d662e59988668a919d8e5 /lisp/mastodon-views.el | |
parent | d619c096de763075a52c3836a8d0a617bedec19b (diff) |
flymake views.el
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r-- | lisp/mastodon-views.el | 6 |
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) |