refactor(emacs-lisp): sharp-quote function symbols

This commit is contained in:
Henrik Lissner 2022-09-15 23:29:19 +02:00
parent 85f3b19f61
commit 20ab9154c2
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -193,8 +193,8 @@ See `+emacs-lisp-non-package-mode' for details.")
(use-package! elisp-demos
:defer t
:init
(advice-add 'describe-function-1 :after #'elisp-demos-advice-describe-function-1)
(advice-add 'helpful-update :after #'elisp-demos-advice-helpful-update)
(advice-add #'describe-function-1 :after #'elisp-demos-advice-describe-function-1)
(advice-add #'helpful-update :after #'elisp-demos-advice-helpful-update)
:config
(advice-add #'elisp-demos--search :around #'+emacs-lisp--add-doom-elisp-demos-a))