Write function to require private.el

This commit is contained in:
Case Duckworth 2021-06-06 23:26:28 -05:00
parent afa3013927
commit 41ffc15191
3 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,7 @@
;;; Code:
;;; Private files
(require 'acdw-private)
(acdw/require-private)
;;; Select Methods
(setq gnus-select-method '(nnnil ""))

View File

@ -46,7 +46,7 @@
(normal-top-level-add-subdirs-to-load-path))
;;;; Private stuff
(require 'acdw-private)
(acdw/require-private)
;;;; Utility functions and variables

View File

@ -410,6 +410,10 @@ Prompt only if there are unsaved changes."
(custom-set-faces '(fringe
((t (:foreground "dim gray"))))))
(defun acdw/require-private ()
"Require `acdw-private', which is in private.el."
(require 'acdw-private "private.el"))
;;; URL regexp
;; really, I just want to add gemini:// protocol, but I'm going to do some