diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-07-08 13:45:42 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-07-08 13:45:42 +0200 |
commit | a7fec255574decfe24302f260b451203d13a8b22 (patch) | |
tree | 4b7b1c9a1a3c2fc17cf50c2286f87b4c9410b8f1 /lisp/mastodon-toot.el | |
parent | 7b4d77b86bb88377ca75938d2f1b88b839e96a02 (diff) | |
parent | 4e8d28616431d2ddedc01eb021d20718f1eb1877 (diff) |
Merge branch 'multisession' into develop
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r-- | lisp/mastodon-toot.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index e934352..496f334 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -158,10 +158,7 @@ If the original toot visibility is different we use the more restricted one." "Whether to enable your instance's custom emoji by default." :type 'boolean) -(defcustom mastodon-toot--emojify-in-compose-buffer t - "Whether to enable `emojify-mode' in the compose buffer. -We only attempt to enable it if its bound." - :type 'boolean) +(defvar mastodon-use-emojify) (defcustom mastodon-toot--proportional-fonts-compose nil "Nonnil to enable using proportional fonts in the compose buffer. @@ -1964,7 +1961,9 @@ EDIT means we are editing an existing toot, not composing a new one." (mastodon-toot-mode t) ;; set visibility: (setq mastodon-toot--visibility - (or (plist-get mastodon-profile-account-settings 'privacy) + (or (plist-get + (multisession-value mastodon-profile-account-settings) + 'privacy) ;; use toot visibility setting from the server: (mastodon-profile--get-source-value 'privacy) "public")) ; fallback |