summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-04 14:40:26 -0600
committerCase Duckworth2022-01-04 14:40:26 -0600
commit148c2b46f4071d95f5b692197b1716e7357af000 (patch)
treefb0c7c9add27b66453e9e8015239958359622ab1 /early-init.el
parentAdd +casing (diff)
downloademacs-148c2b46f4071d95f5b692197b1716e7357af000.tar.gz
emacs-148c2b46f4071d95f5b692197b1716e7357af000.zip
Add docstrings to advice
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index 02f92c2..462643a 100644 --- a/early-init.el +++ b/early-init.el
@@ -21,8 +21,8 @@
21 21
22;;; Code: 22;;; Code:
23 23
24;; Message when loading a library.
25(define-advice load (:before (feature &rest _)) 24(define-advice load (:before (feature &rest _))
25 "Message the user when loading a library."
26 (with-temp-message (format "Now loading: '%s'" feature))) 26 (with-temp-message (format "Now loading: '%s'" feature)))
27 27
28;;; Speed up init 28;;; Speed up init