summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-11-24 23:15:12 +0000
committerMatthew Lemon <matt@matthewlemon.com>2022-11-24 23:15:12 +0000
commit2fecc133700f277dd78f7a9200e388dc614acd28 (patch)
tree05aa0efec312526d2eb94aa35359b981dfb4d545
parent168b4baa9c96b599dec6c59a689d4dd7204df746 (diff)
renamed mrl-functions
-rw-r--r--init.el4
-rw-r--r--lisp/mrl-functions.el (renamed from lisp/mrl_functions.el)2
2 files changed, 2 insertions, 4 deletions
diff --git a/init.el b/init.el
index 3c3352e..4f06ec6 100644
--- a/init.el
+++ b/init.el
@@ -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