aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-04-29 12:02:34 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-04-29 13:01:24 +0200
commit7c0bab3efe68aab790820fd7bb3914f8efc4913b (patch)
tree261688f2787019dd61cedf4b2b9a570e8c68f45b /lisp
parent7bc512d546477d8399208fcdf9fa53540fb5cdae (diff)
newline after reply text in compose buffer
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-toot.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 1a2a3cd..5dbdd05 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -1462,12 +1462,14 @@ REPLY-TEXT is the text of the toot being replied to."
'read-only "Edit your message below."
'toot-post-header t)
(if reply-text
- (propertize (truncate-string-to-width
- (mastodon-tl--render-text reply-text)
- mastodon-toot-orig-in-reply-length)
- 'read-only "Edit your message below."
- 'toot-post-header t
+ (concat
+ (propertize (truncate-string-to-width
+ (mastodon-tl--render-text reply-text)
+ mastodon-toot-orig-in-reply-length)
+ 'read-only "Edit your message below."
+ 'toot-post-header t
'face 'mastodon-toot-docs-reply-text-face)
+ "\n")
"")
(propertize
(concat divider "\n")