aboutsummaryrefslogtreecommitdiff
path: root/piem.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-05-15 21:55:31 -0400
committerKyle Meyer <kyle@kyleam.com>2020-05-15 21:55:31 -0400
commit6a1cff31172612060a19dd38a59ef295ca439ce4 (patch)
treea6934ae4e016cba62f7091beaa2426d5bb8fdd2e /piem.el
parentee43bf48274b41902d3f6b08a00fc08d0f0e5bda (diff)
downloadpiem-6a1cff31172612060a19dd38a59ef295ca439ce4.tar.gz
Prune some autoloads
There's no need to autoload the non-interactive functions.
Diffstat (limited to 'piem.el')
-rw-r--r--piem.el3
1 files changed, 0 insertions, 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))