Function: embark-export-apropos
embark-export-apropos is a byte-compiled function defined in
embark.el.
Signature
(embark-export-apropos SYMBOLS)
Documentation
Create apropos buffer listing SYMBOLS.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark-export-apropos (symbols)
"Create apropos buffer listing SYMBOLS."
(embark--export-rename "*Apropos*" "Apropos"
(apropos-parse-pattern "") ;; Initialize apropos pattern
;; HACK: Ensure that order of exported symbols is kept.
(cl-letf (((symbol-function #'sort) (lambda (list &rest _args) (nreverse list))))
(apropos-symbols-internal
(delq nil (mapcar #'intern-soft symbols))
(bound-and-true-p apropos-do-all)))))