diff options
| author | marty hiatt <martianhiatus@riseup.net> | 2024-10-21 19:52:15 +0200 | 
|---|---|---|
| committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-21 19:52:15 +0200 | 
| commit | 0cbf18f5e347aa1ff02f8569fd08947c6735962a (patch) | |
| tree | 9f3b536d82a7a9df6a818753820f1f940ee313d6 | |
| parent | 25cab8eb3d8a4227b32a2a75eec7495d7c00a67b (diff) | |
less restrictive visibility: flip then/else clauses. FIX #602
| -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."  | 
