diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-11-06 12:40:04 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-11-06 12:40:04 +0100 |
commit | aa0a2c08f062331b914999e6b04282ccdc8c5a11 (patch) | |
tree | d4b637a5056da823d2dfc3442c3839b80a9011ac | |
parent | 1da8ab0675928f84790bd684db28d0b7ee14dab8 (diff) |
add msg about loss of attachments on editing toot
-rw-r--r-- | lisp/mastodon-toot.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index b2f860f..0891c51 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -889,7 +889,7 @@ instance to edit a toot." (toot-visibility (alist-get 'visibility toot)) (toot-language (alist-get 'language toot)) (reply-id (alist-get 'in_reply_to_id toot))) - (when (y-or-n-p "Edit this toot? ") + (when (y-or-n-p "Edit this toot? (NB: attachments will be lost!) ") (mastodon-toot--compose-buffer nil reply-id nil content :edit) (goto-char (point-max)) ;; adopt reply-to-id, visibility, CW, and language: |