diff options
Diffstat (limited to 'lisp/mastodon-toot.el')
| -rw-r--r-- | lisp/mastodon-toot.el | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index d775727..2c5c523 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -184,6 +184,9 @@ change the setting on the server, see    "An ISO 8601 timestamp that specifying when the post should be published.  Should be at least 5 minutes into the future.") +(defvar-local mastodon-toot--scheduled-id nil +  "The id of the scheduled post that we are now editing.") +  (defvar-local mastodon-toot--reply-to-id nil    "Buffer-local variable to hold the id of the toot being replied to.") @@ -526,16 +529,18 @@ REPLY-ID, TOOT-VISIBILITY, and TOOT-CW of deleted toot are preseved."        (mastodon-toot--set-toot-properties         reply-id toot-visibility toot-cw         ;; TODO set new lang/scheduled props here -       nil nil)))) +       nil)))) -(defun mastodon-toot--set-toot-properties (reply-id visibility cw -                                                    scheduled lang) +(defun mastodon-toot--set-toot-properties (reply-id visibility cw lang +                                                    &optional scheduled +                                                    scheduled-id)    "Set the toot properties for the current redrafted or edited toot.  REPLY-ID, VISIBILITY, CW, SCHEDULED, and LANG are the properties to set."    (when reply-id      (setq mastodon-toot--reply-to-id reply-id))    (setq mastodon-toot--visibility visibility)    (setq mastodon-toot--scheduled-for scheduled) +  (setq mastodon-toot--scheduled-id scheduled-id)    (when (not (string-empty-p lang))      (setq mastodon-toot--language lang))    (mastodon-toot--set-cw cw) | 
