branch: externals/ement commit 56e19f26c8f043666064559c3ea91f316fcffcf2 Author: Adam Porter <a...@alphapapa.net> Commit: Adam Porter <a...@alphapapa.net>
Fix: (ement-directory) Add autoloads --- README.org | 3 ++- ement-directory.el | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 40bbdff48c..1aee8d7521 100644 --- a/README.org +++ b/README.org @@ -289,7 +289,8 @@ Note that, while ~matrix-client~ remains usable, and probably will for some time ** 0.5.1-pre -Nothing new yet. +*Fixes* ++ Autoload ~ement-directory~ commands. ** 0.5 diff --git a/ement-directory.el b/ement-directory.el index af9aa24a8b..2327870484 100644 --- a/ement-directory.el +++ b/ement-directory.el @@ -150,6 +150,7 @@ ;; TODO: Pagination of results. +;;;###autoload (cl-defun ement-directory (&key server session since (limit 100)) "View the public room directory on SERVER with SESSION. Show up to LIMIT rooms. Interactively, with prefix, prompt for @@ -194,6 +195,7 @@ SINCE may be a next-batch token." remaining))))))) (ement-message "Listing %s rooms on %s..." limit server))) +;;;###autoload (cl-defun ement-directory-search (query &key server session since (limit 1000)) "View public rooms on SERVER matching QUERY. QUERY is a string used to filter results."