aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org11
-rw-r--r--lisp/mastodon-toot.el2
-rw-r--r--lisp/mastodon.el1
3 files changed, 4 insertions, 10 deletions
diff --git a/README.org b/README.org
index c6df5ed..92a2049 100644
--- a/README.org
+++ b/README.org
@@ -322,20 +322,13 @@ PRs, issues, feature requests, and general feedback are very welcome!
4. Enable debug on error (=toggle-debug-on-error=), make the bug happen again, and copy the backtrace that appears.
5. Open an issue here and explain what is going on.
-*** Features
+*** Fixes and features
-1. Create an [[https://github.com/jdenen/mastodon.el/issues][issue]] detailing the feature you'd like to add.
+1. Create an [[https://codeberg.org/martianh/mastodon.el/issues][issue]] detailing what you'd like to do.
2. Fork the repository and create a branch off of =develop=.
3. Run the tests and ensure that your code doesn't break any of them.
4. Create a pull request referencing the issue created in step 1.
-*** Fixes
-
-1. In an [[https://github.com/jdenen/mastodon.el/issues][issue]], let me know that you're working to fix it.
-2. Fork the repository and create a branch off of =develop=.
-3. Run the tests and ensure that your code doesn't break any of them.
-4. Create a pull request referencing the issue from step 1.
-
** Supporting mastodon.el
If you'd like to support continued development of =mastodon.el=, I accept donations via paypal at martianhiatus [ at ] riseup [ dot ] net. If you would prefer a different payment method, write to me at that address and I can provide IBAN or other details.
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 5a735dc..9f46cb6 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -887,7 +887,7 @@ meta fields respectively."
(looking-at str-prefix)))
(if (and (string= str-prefix "@")
(> (length handle-before) 1)) ; more than just @
- (concat str-prefix (substring-no-properties handle-before 1)) ;handle
+ (concat str-prefix (substring-no-properties handle-before 1)) ; handle
(concat str-prefix (company-grab-symbol))))) ; tag
(candidates (funcall candidates-fun arg))
(annotation (funcall annot-fun arg))
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 5be168c..e6dcd3c 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -91,6 +91,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")