diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-24 23:15:12 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-24 23:15:12 +0000 |
commit | 2fecc133700f277dd78f7a9200e388dc614acd28 (patch) | |
tree | 05aa0efec312526d2eb94aa35359b981dfb4d545 | |
parent | 168b4baa9c96b599dec6c59a689d4dd7204df746 (diff) |
renamed mrl-functions
-rw-r--r-- | init.el | 4 | ||||
-rw-r--r-- | lisp/mrl-functions.el (renamed from lisp/mrl_functions.el) | 2 |
2 files changed, 2 insertions, 4 deletions
@@ -4,8 +4,6 @@ ;;; basic config ;;; Code: - - (defvar mrl/startup-time (current-time)) (defun mrl/emacs-load-time () (let ((time (float-time (time-subtract (current-time) mrl/startup-time)))) @@ -71,7 +69,7 @@ Restart works only on graphic display." ;; load my crap (add-to-list 'load-path "~/.emacs.d/lisp") -(require 'mrl_functions) +(require 'mrl-functions) (require 'org-notmuch) (org-link-set-parameters "notmuch" diff --git a/lisp/mrl_functions.el b/lisp/mrl-functions.el index 75f0eaa..3ba9eff 100644 --- a/lisp/mrl_functions.el +++ b/lisp/mrl-functions.el @@ -45,5 +45,5 @@ of lines to run through." (insert-char ?\s)) (next-line) (setq lines (- lines 1)))) -(provide 'mrl_functions) +(provide 'mrl-functions) ;;; mrl_functions ends here |