diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-05-15 21:55:31 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-05-15 21:55:31 -0400 |
commit | 6a1cff31172612060a19dd38a59ef295ca439ce4 (patch) | |
tree | a6934ae4e016cba62f7091beaa2426d5bb8fdd2e | |
parent | ee43bf48274b41902d3f6b08a00fc08d0f0e5bda (diff) | |
download | piem-6a1cff31172612060a19dd38a59ef295ca439ce4.tar.gz |
Prune some autoloads
There's no need to autoload the non-interactive functions.
-rw-r--r-- | piem.el | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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)) |