diff options
| -rw-r--r-- | lisp/mastodon-toot.el | 2 | ||||
| -rw-r--r-- | lisp/mastodon.el | 3 | 
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index c18f751..cbcc4f3 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -878,7 +878,7 @@ Federated user: `username@host.co`."      ;; reverse does not work on vectors in 24.5      (mapcar (lambda(x) (alist-get 'acct x))  	    (reverse mentions)))) -     +  (defun mastodon-toot--get-bounds (regex)    "Get bounds of tag or handle before point using REGEX."    ;; needed because # and @ are not part of any existing thing at point diff --git a/lisp/mastodon.el b/lisp/mastodon.el index a6ee4bc..20b420e 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -90,6 +90,7 @@  (when (require 'lingva nil :no-error)    (autoload 'mastodon-toot--translate-toot-text "mastodon-toot"))  (autoload 'mastodon-search--trending-tags "mastodon-search") +(autoload 'mastodon-profile-account-settings "mastodon-profile")  (autoload 'mastodon-profile--fetch-server-account-settings "mastodon-profile")  (autoload 'mastodon-notifications--get-mentions "mastodon-notifications")  (autoload 'mastodon-tl--view-lists "mastodon-tl") @@ -294,7 +295,7 @@ BUFFER-NAME is added to \"*mastodon-\" to create the buffer name."  ;;;###autoload  (defun mastodon-url-lookup (&optional query-url) -  "If QUERY-URL resembles a mastodon link, try to load in `mastodon.el'. +  "If a URL resembles a mastodon link, try to load in `mastodon.el'.  Does a WebFinger lookup.  URL can be arg QUERY-URL, or URL at point, or provided by the user.  If a status or account is found, load it in `mastodon.el', if  | 
