summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-10-07 18:22:45 -0500
committerCase Duckworth2021-10-07 18:23:04 -0500
commit20c643741773c6051d434b43694babc43924c2ed (patch)
tree5a05a118654722f8a25777be32351e86e08166fc
parentUpdate TODO.org (diff)
downloademacs-20c643741773c6051d434b43694babc43924c2ed.tar.gz
emacs-20c643741773c6051d434b43694babc43924c2ed.zip
Use plain require
-rw-r--r--init.el2
-rw-r--r--lisp/acdw.el6
2 files changed, 1 insertions, 7 deletions
diff --git a/init.el b/init.el index 6467bd9..4eb5e3f 100644 --- a/init.el +++ b/init.el
@@ -85,7 +85,7 @@
85 (:also-load acdw-compat 85 (:also-load acdw-compat
86 acdw-lisp 86 acdw-lisp
87 acdw-reading) 87 acdw-reading)
88 (acdw/require-private) 88 (require 'acdw-private (acdw/sync-dir "private.el") :noerror)
89 89
90 (:option user-full-name "Case Duckworth" 90 (:option user-full-name "Case Duckworth"
91 user-mail-address (rot13-string "npqj@npqj.arg")) 91 user-mail-address (rot13-string "npqj@npqj.arg"))
diff --git a/lisp/acdw.el b/lisp/acdw.el index cc73071..5d23e72 100644 --- a/lisp/acdw.el +++ b/lisp/acdw.el
@@ -665,12 +665,6 @@ ARGS."
665 (custom-set-faces '(fringe 665 (custom-set-faces '(fringe
666 ((t (:foreground "dim gray")))))) 666 ((t (:foreground "dim gray"))))))
667 667
668(defun acdw/require-private ()
669 "Load \"~/.emacs.d/private.el\".
670It's called 'require-private' for historical reasons."
671 (load (expand-file-name "private.el" user-emacs-directory)
672 :noerror :nomessage))
673
674 668
675;;; Recentf renaming with dired 669;;; Recentf renaming with dired
676;; from ... somewhere. 'rjs', apparently? 670;; from ... somewhere. 'rjs', apparently?