diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-22 08:04:26 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-22 08:04:26 +0200 |
commit | 31df8d9a0ae57342961ff46fe032c6871d2cefbb (patch) | |
tree | 873ed2239093fcf50a406e12b962375c6e3bf37c /lisp | |
parent | cafdc7131f7c31f96bb890d478a21efe4e9f7c83 (diff) | |
parent | 8c6b2a484923f72b7790fbf4ef4fe8d93f74f553 (diff) |
Merge branch 'develop'
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-toot.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index fc5825a..7440fe5 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -1696,8 +1696,8 @@ The default is given by `mastodon-toot--default-reply-visibility'." (let ((less-restrictive (member (intern mastodon-toot--default-reply-visibility) mastodon-toot-visibility-list))) (if (member (intern reply-visibility) less-restrictive) - mastodon-toot--default-reply-visibility - reply-visibility)))) + reply-visibility + mastodon-toot--default-reply-visibility)))) (defun mastodon-toot--render-reply-region-str (str) "Refill STR and prefix all lines with >, as reply-quote text." |