diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-29 12:02:34 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-29 12:04:51 +0200 |
commit | 912f7609fba01baeda1601f52a68533398f5fd4d (patch) | |
tree | 0364832cdc34342e75b863fb00ff00b852e9beb3 /lisp | |
parent | bec7a01c1fe63fdb9ca45602ec71315514b4572d (diff) |
newline after reply text in compose buffer
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-toot.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index a3f337d..763c533 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -1456,12 +1456,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 - 'face '(variable-pitch :foreground "#7c6f64")) + (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 '(variable-pitch :foreground "#7c6f64")) + "\n") "") (propertize (concat divider "\n") |