diff options
author | Kyle Meyer <kyle@kyleam.com> | 2021-02-07 15:04:06 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2021-02-07 15:04:06 -0500 |
commit | f784460e5fd99619070a302dfc22d24d54336ede (patch) | |
tree | 756cdd5994fdab3592f1da5514bb07fa0b43892d | |
parent | 2339ba46872bf990129275771306182c82235dbf (diff) | |
download | piem-f784460e5fd99619070a302dfc22d24d54336ede.tar.gz |
piem-copy-mid-url: Autoload
piem-copy-mid-url will usually be called through piem-dispatch, which
is autoloaded, so autoloading piem-copy-mid-url doesn't matter in that
context, but users are of course free to bind/call piem-copy-mid-url
directly.
-rw-r--r-- | piem.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -491,6 +491,7 @@ INBOX is nil, use the inbox returned by `piem-inbox'." (or inbox "current buffer")))) (piem-escape-mid mid))) +;;;###autoload (defun piem-copy-mid-url (&optional browse) "Copy public-inbox URL for the current buffer's message. With prefix argument BROWSE, call `browse-url' on the URL |