diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-05-23 13:58:43 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-05-23 13:58:43 -0400 |
commit | c17bd6f389d3736c55a51372e06e1ce4cd3976b1 (patch) | |
tree | 087d0c879ce8dd9aa0932049c1a20d803337b7ec | |
parent | 8e4268ef74d12de9cd86d4743e9e5a831c6e0c9e (diff) | |
download | piem-c17bd6f389d3736c55a51372e06e1ce4cd3976b1.tar.gz |
piem: Add comment headings
-rw-r--r-- | piem.el | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -29,6 +29,9 @@ (require 'message) (require 'subr-x) + +;;;; Options + (defgroup piem () "Emacs tools for working with public-inbox archives." :link '(info-link "(piem)Top") @@ -126,6 +129,9 @@ intended to be used by libraries implementing a function for (when (string-match-p (regexp-quote addr) to) (throw 'hit (car inbox))))))))) + +;;;; Extractors + (defun piem-inbox () "Return the current buffer's inbox." (run-hook-with-args-until-success 'piem-get-inbox-functions)) |