diff options
author | Case Duckworth | 2021-09-03 22:52:00 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-03 22:52:00 -0500 |
commit | bf6f31aa8e0769a384c89761892f6084c5984441 (patch) | |
tree | b2b1973dd1a2ba61cf06701df550f6b085532cb3 | |
parent | Setup abbrev (diff) | |
download | emacs-bf6f31aa8e0769a384c89761892f6084c5984441.tar.gz emacs-bf6f31aa8e0769a384c89761892f6084c5984441.zip |
Fix typos
-rw-r--r-- | init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.el b/init.el index b11a035..37a9d06 100644 --- a/init.el +++ b/init.el | |||
@@ -210,10 +210,10 @@ | |||
210 | (with-eval-after-load 'dired | 210 | (with-eval-after-load 'dired |
211 | (acdw/system | 211 | (acdw/system |
212 | (:work (:straight w32-browser) | 212 | (:work (:straight w32-browser) |
213 | (autoload 'dired-w32-browser "w32-browser") | 213 | (autoload #'dired-w32-browser "w32-browser" nil t) |
214 | (:bind "RET" #'dired-w32-browser)) | 214 | (:bind "RET" #'dired-w32-browser)) |
215 | (:home (:straight dired-open) | 215 | (:home (:straight dired-open) |
216 | (require 'dired-open) | 216 | (autoload #'dired-find-alternate-file "dired-open" nil t) |
217 | (:bind "RET" #'dired-find-alternate-file))) | 217 | (:bind "RET" #'dired-find-alternate-file))) |
218 | 218 | ||
219 | (:straight dired-subtree) | 219 | (:straight dired-subtree) |