branch: elpa/fedi
commit 80e36b1eedda359bf4580b88e3bb72e5bbfbb2b7
Author: marty hiatt <martianhiatus [a t] riseup [d o t] net>
Commit: marty hiatt <martianhiatus [a t] riseup [d o t] net>
fix loop for adding capfs
---
fedi-post.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fedi-post.el b/fedi-post.el
index 9cc6eaba626..3e294979b80 100644
--- a/fedi-post.el
+++ b/fedi-post.el
@@ -698,7 +698,7 @@ MODE is the minor-mode to enable in the buffer."
(set (make-local-variable 'completion-at-point-functions)
(cl-loop for f in capf-funs
do (cl-pushnew f completion-at-point-functions)
- return completion-at-point-functions))
+ finally return completion-at-point-functions))
;; company
(when (and fedi-post--use-company-for-completion
(require 'company nil :no-error))