diff options
author | John Turner <jturner.usa@gmail.com> | 2022-07-03 23:47:39 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2022-07-03 23:47:39 -0400 |
commit | fa40958eae28183d397fb502d7caa27c3c8fcc62 (patch) | |
tree | 3aec54f84a76b7760316831a338eaf57471bb39f /load-local-lisp.el | |
parent | c284f5b2c4e4ed72a2a060cb91353408f5a2b416 (diff) | |
download | emacs.d-fa40958eae28183d397fb502d7caa27c3c8fcc62.tar.gz |
restored man wrapper functions into the new lisp directory
Diffstat (limited to 'load-local-lisp.el')
-rw-r--r-- | load-local-lisp.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/load-local-lisp.el b/load-local-lisp.el index 0e1fba1..28ed25d 100644 --- a/load-local-lisp.el +++ b/load-local-lisp.el @@ -1,4 +1,7 @@ (let ((local-lisp-directory (file-name-concat user-emacs-directory "lisp"))) - (add-to-list 'load-path (file-name-concat local-lisp-directory "backup-before-save"))) + (add-to-list 'load-path (file-name-concat local-lisp-directory "backup-before-save")) + (add-to-list 'load-path (file-name-concat local-lisp-directory "man-wrapper"))) (require 'backup-before-save) +(require 'man-wrapper) + |