From 6a1cff31172612060a19dd38a59ef295ca439ce4 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 15 May 2020 21:55:31 -0400 Subject: Prune some autoloads There's no need to autoload the non-interactive functions. --- piem.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/piem.el b/piem.el index f014cbc..5a54b82 100644 --- a/piem.el +++ b/piem.el @@ -126,19 +126,16 @@ intended to be used by libraries implementing a function for (when (string-match-p (regexp-quote addr) to) (throw 'hit (car inbox))))))))) -;;;###autoload (defun piem-inbox () "Return the current buffer's inbox." (run-hook-with-args-until-success 'piem-get-inbox-functions)) -;;;###autoload (defun piem-inbox-coderepo () "Return the code repository of current buffer's inbox." (when-let ((p (piem-inbox)) (repo (plist-get (cdr (assoc p piem-inboxes)) :coderepo))) (expand-file-name repo))) -;;;###autoload (defun piem-mid () "Return the current buffer's message ID." (run-hook-with-args-until-success 'piem-get-mid-functions)) -- cgit v1.2.3