aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-toot.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-05 09:25:55 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-05 09:25:55 +0200
commitcf6b3f9f0cb8e9d9a879a18aaf574db835af5223 (patch)
treea1dc8785f06b8aa4a854d8ab4bd77c5daa298c5d /lisp/mastodon-toot.el
parentdce3b60783c02605ad7961f56bf41dd6bc91b51d (diff)
autoloads / requires
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r--lisp/mastodon-toot.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index f7441c6..0aadd28 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -38,9 +38,12 @@
(defvar emojify-emojis-dir)
(defvar emojify-user-emojis)
+(require 'compat)
(require 'cl-lib)
(require 'persist)
(require 'mastodon-iso)
+(require 'facemenu)
+(require 'text-property-search)
(defvar mastodon-instance-url)
(defvar mastodon-tl--buffer-spec)
@@ -48,6 +51,7 @@
(defvar mastodon-profile-account-settings)
(autoload 'iso8601-parse "iso8601")
+(autoload 'with-mastodon-buffer "mastodon")
(autoload 'mastodon-auth--user-acct "mastodon-auth")
(autoload 'mastodon-http--api "mastodon-http")
(autoload 'mastodon-http--build-array-params-alist "mastodon-http")
@@ -1423,8 +1427,10 @@ LONGEST is the length of the longest binding."
(defun mastodon-toot--format-reply-in-compose-string (reply-text)
"Format a REPLY-TEXT for display in compose buffer docs."
(let* ((rendered (mastodon-tl--render-text reply-text))
- (no-newlines (replace-regexp-in-string "\n\n" "\n" rendered))
- (crop (string-limit
+ (no-props (substring-no-properties rendered))
+ (no-newlines (replace-regexp-in-string "\n\n" "" no-props))
+ (crop (truncate-string-to-width
+ ;; (string-limit
(concat " Reply to: \"" no-newlines "\"")
mastodon-toot-orig-in-reply-length)))
(if (> (length no-newlines)